GET api/v1/admin/tasks/account/{taskID}
Displays the task detail of the specific task specified.
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
taskID |
The ID of the task. |
globally unique identifier |
Required |
Body Parameters
None.
Response Information
Resource Description
The details of the task which include the following information: 1) The ID. 2) The ID of the task 3) The name of the task. 4) The client ID used to run the task 5) The content type for the parameters used for the task. 6) The date the task was created. 7) The date the task was last modified. 8) Whether the task is enabled or disabled. 9) When the task expires. 10) Who last modified the task. 11) Who last ran the task. 12) When the task was last run. 13) When the task starts. 14) The parameters used for the task.
ResponseOfAccountTaskResponseName | Description | Type | Additional information |
---|---|---|---|
Error | Error |
None. |
|
ResponseData | ResponseDataOfAccountTaskResponse |
None. |
Response Formats
application/json, text/json
{ "Error": { "ErrorCode": "sample string 1", "ErrorReason": "sample string 2" }, "ResponseData": { "Identification": { "UserId": "sample string 1" }, "Result": "sample string 1", "Detail": { "ID": "572eb3a7-7d81-4e2f-bb2a-73dfec33d18a", "TaskID": "c1d8d062-6a7a-4b50-814f-4bcd96707213", "Name": "sample string 3", "Enabled": true, "Frequency": "sample string 5", "StartDate": "2024-11-21T08:33:32.0129301+00:00", "FinishDate": "2024-11-21T08:33:32.0129301+00:00", "Parameters": "sample string 7", "ContentType": "sample string 8", "Notification": "sample string 9", "DateCreated": "2024-11-21T08:33:32.0129301+00:00", "DateModified": "2024-11-21T08:33:32.0129301+00:00", "LastRunOn": "2024-11-21T08:33:32.0129301+00:00", "LastRunBy": "sample string 11", "LastModifiedBy": "sample string 12", "Status": "sample string 13", "ClientID": "6bd2d898-56a0-4fbe-b438-a6575ac67663" } } }