Get Document
Get all documents from a FileCabinet
Values to be replaced:
- servername.com with your DocuWare server address.
- {FileCabinetId} with the FileCabinetId you get from the response of Get all FileCabinets.
- "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}/Documents" ^
--header "Accept: application/json" ^
--cookie "C:\Temp\login.cookies"
Get a specific document
Values to be replaced:
- servername.com with your DocuWare server address.
- {FileCabinetId} with the FileCabinetId you get from the response of Get all FileCabinets.
- {DocumentId} with the DocumentId you get from the response of Get all documents from a FileCabinet
- "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}/Documents/{DocumentId}" ^
--header "Accept: application/json" ^
--cookie "C:\Temp\login.cookies"