Get Organization
Get all organizations
Values to be replaced:
- servername.com with your DocuWare server address.
- "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/Organizations" ^
--header "Accept: application/json" ^
--cookie "C:\Temp\login.cookies"
Get specific organization
Values to be replaced:
- servername.com with your DocuWare server address.
- {OrgId} with the OrgId from the result from 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/Organizations/{OrgId}" ^
--header "Accept: application/json" ^
--cookie "C:\Temp\login.cookies"