Get FileCabinet
Get all FileCabinets and Baskets
Values to be replaced:
- servername.com with your DocuWare server address.
- {OrgId} with the OrgId you get from the response of Get all organizations.
- "C:\Temp\login.cookies" with the path to the cookie jar file you defined by the Login.
curl --location --request GET "https://servername.com/docuware/platform/FileCabinets?orgid={OrgId}" ^
--header "Accept: application/json" ^
--cookie "C:\Temp\login.cookies"
Get specific FileCabinet or Basket
Values to be replaced:
- servername.com with your DocuWare server address.
- {FileCabinetId} with the FileCabinetId from the response of Get all FileCabinets and Baskets.
- "C:\Temp\login.cookies" with the path to the cookie jar file you defined by the Login.
curl --location --request GET "https://servername.com/docuware/platform/FileCabinets/{FileCabinetId}" ^
--header "Accept: application/json" ^
--cookie "C:\Temp\login.cookies"