This endpoint returns a list of documents for the user. The returned list will be determined by the permissions/access of the API client.
GET
Request
Url Params
tenant_subDomainName | string | |
user_id | int | system id of the user |
Query Params
The end point supports oData filtering. You are able to filter the results of the request by passing in the following query parameter in the request.
$filter |
this example returns only tenants whose name contains 'beta'
Authorization
The following authorization 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:
fileGuid | guid | the unique reference of the file | |
fileName | string | name of the file | |
fileExtension | string | the extension of the file | |
title | string | title of the file | |
limitFileAccess | bool | is file access limited | |
auditAccess | bool | Is file accessible for audit | |
fileType | int | type of the file | |
fileCategoryId | int | ||
fileCategory | object | ||
id | int | the id of document folder category | |
isSystem | bool | is the folder platform level folder | |
hasUserDocuments | bool | does folder has user documents | |
canUserUpload | bool | is user allowed to upload | |
name | string | the name of the user document folder category | |
displayName | string | display name of the user document folder category | |
alwaysShow | bool | is document always visible | |
orderPriority | int | priority of the document | |
fileCategoryDisplayName | string | display name of file category | |
fileCategoryName | string | name of file category | |
fileType | string | the type of the file | |
fileBytSize | int | size of file in bytes | |
fileCreatedDate | date | file creation date | |
fileModifiedDate | date | file modified date | |
deferredCreationUrl | string | ||
allowAnonymousAccess | bool | indicates anonymous access is permitted if set to true |
Permissions
The API Client requires at least readonly permissions to Tenant users document library 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/list/get/{tenatSubDomainName}/{user_id}?$inlinecount=allpages&$orderby=FileCreateDate desc&$top=10&$skip=0");
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/list/get/{tenantSubDomainName}/{user_id}$%24inlinecount=allpages&%24orderby=FileCreateDate desc&%24top=10&%24skip=0' \ --header 'Authorization: Bearer {access token}