This endpoint allows you to upload a file (streamed content) to the user's library.
POST
See How to create API Clients to see how to obtain API Client IDs and secrets
Request
Form Params
targetUserAccountId | int | |
tenantId | int | the tenant id that the user belongs to |
category | string | the tenants category to upload into (e.g. "upload") |
accessortype | int | set this to "0" |
duplicateFileSuffix | string | e.g. " - Copy" |
tenantFileFolderId | int | To follow |
tenantUserDocFolderCategory | string | the tenants category to upload into (e.g. "upload") |
Authorization
The following authorization header is required. The authorisation header should be set to a 'Bearer Token' type
Token |
Response
Guid | A unique reference to the file |
Permissions
The API Client requires at least write permissions to Tenant users document library to successfully submit new files (See Admin User Roles for more details). Only tenants that the API client has access to will be returned.
C# Example:
var client = new HttpClient(); var request = new HttpRequestMessage(HttpMethod.Post, "https://{platform API url}/api/file/upload/admin-for-client/store"); var content = new MultipartFormDataContent(); content.Add(new StringContent("{targetUserAccountId}"), "targetUserAccountId"); content.Add(new StringContent("{tenantId}"), "tenantId"); content.Add(new StringContent("{category}"), "category"); content.Add(new StringContent("{accessorType}"), "accessorType"); content.Add(new StringContent("{duplicateFileSuffix}"), "duplicateFileSuffix"); content.Add(new StringContent("{tenantFileFolderId}"), "tenantFileFolderId"); content.Add(new StringContent("tenantUserDocFolderCategory}"), "tenantUserDocFolderCategory"); content.Add(new StreamContent(File.OpenRead("fileName","","fileName")); request.Content = content; var response = await client.SendAsync(request) response.EnsureSuccessStatusCode(); Console.WriteLine(await response.Content.ReadAsStringAsync());
cURL Example
curl --location 'https://{platform API url}/api/file/upload/admin/for-client/store' \ --header \'Authorization: Bearer {access token}' \--form 'targetUserAccountId="{targetUserAccountId}"' \--form 'tenantId="{tenantId}"' \--form 'category="{category}"' \--form 'accessorType="{accessorType}"' \--form 'duplicateFileSuffix="{duplicateFileSuffix}"' \--form 'tenantFileFolderId="{tenantFileFolderId}"' \--form 'tenantUserDocFolderCategory="{tenantUserDocFolderCategory}"' \--form 'fileName={fileName}"'