This endpoint returns a list of document categories for a specified tenant. The returned list will be determined by the permissions/access of the API client.
GET
Request
Url Params
tenant_subdomainname | string |
Authorization
The following authorisation header is required. The authorisation header should be set to a 'Bearer Token' type
Token |
Response
The response will return an array of 0 to n JSON objects. Each JSON object in the array contains the following properties:
id | int | the id of the tenant document category |
isSystem | bool | whether the category is part of the default system |
hasUserDocuments | bool | whether the category can contain user documents |
canUserUpload | bool | whether the category allows user to directly upload documents into |
name | string | the name of the document category |
displayName | string | the display name of the document category |
alwaysShow | bool | whether the category should always show on the client side even when empty |
orderPriority | int | priority of the documents category |
Permissions
The API Client requires at least readonly permissions to Tenant users documents to successfully retrieve results (See Admin User Roles for more details). Only tenants that the API client has access to will be returned.
Examples
C# Example
var client = new HttpClient(); var request = new HttpRequestMessage(HttpMethod.Get, "https://{platform API url}/api/library/documents/categories/get/{tenatSubDomainName}"); request.Headers.Add("Authorization", "Bearer {access token}"); var response = await client.SendAsync(request); response.EnsureSuccessStatusCode(); Console.WriteLine(await response.Content.ReadAsStringAsync());
cURL Example
curl --location 'https://{platform API url}/api/library/documents/categories/get/{tenantSubDomainName}' \ --header 'Authorization: Bearer {access token}'