GET api/v1/admin/tasks/account/{taskID}

Displays the task detail of the specific task specified.

Request Information

URI Parameters

NameDescriptionTypeAdditional 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.

ResponseOfAccountTaskResponse
NameDescriptionTypeAdditional information
Error

Error

None.

ResponseData

ResponseDataOfAccountTaskResponse

None.

Response Formats

application/json, text/json

Sample:
{
  "Error": {
    "ErrorCode": "sample string 1",
    "ErrorReason": "sample string 2"
  },
  "ResponseData": {
    "Identification": {
      "UserId": "sample string 1"
    },
    "Result": "sample string 1",
    "Detail": {
      "ID": "b8fce602-fcc4-46ab-a492-c80cdc6dfd68",
      "TaskID": "89990114-46af-4927-9851-87fc63b25beb",
      "Name": "sample string 3",
      "Enabled": true,
      "Frequency": "sample string 5",
      "StartDate": "2024-04-24T08:01:42.7565777+00:00",
      "FinishDate": "2024-04-24T08:01:42.7565777+00:00",
      "Parameters": "sample string 7",
      "ContentType": "sample string 8",
      "Notification": "sample string 9",
      "DateCreated": "2024-04-24T08:01:42.7565777+00:00",
      "DateModified": "2024-04-24T08:01:42.7575822+00:00",
      "LastRunOn": "2024-04-24T08:01:42.7575822+00:00",
      "LastRunBy": "sample string 11",
      "LastModifiedBy": "sample string 12",
      "Status": "sample string 13",
      "ClientID": "10b41cba-d1bf-4fad-95e7-f21f490146d3"
    }
  }
}