Call this endpoint to retrieve the status of a DTT upload or download
GET
Request
Url Params
tenantId | int | Length --1 to 2147483647 | |
scheduedTaskId | int | Length --1 to 2147483647 | the id of scheduled task for upload |
Authorization
The following authorisation header is required. The authorisation header should be set to a 'Bearer Token' type
Token |
Response
Return | |||||||||||||
Status code | Description | ||||||||||||
400 | Incorrect access for the request | ||||||||||||
403 | Invalid request or unexpected error (detail will be in the response | ||||||||||||
200 |
|
Permissions
The API Client requires at least readonly permissions to Tenant company datatransfer template 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/admin/tenant/datatransfer/template/status/{{tenantId}}/{{scheduledTaskId}}");
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/admin/tenant/datatransfer/template/status/{{tenantId}}/{{scheduledTaskId}}' \--header 'Authorization: Bearer {{access_token}}'