GET api/v1/admin/tasks/account

Displays all the tasks that have been created on the account.

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

List containing the tasks and their details. Each task will contain 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.

ResponseOfIListOfAccountTaskResponse
NameDescriptionTypeAdditional information
Error

Error

None.

ResponseData

ResponseDataOfIListOfAccountTaskResponse

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": "ba105bbb-6753-4975-a4d7-513636d60572",
        "TaskID": "08ca53c6-d81c-4585-917e-fbc82bcbc5de",
        "Name": "sample string 3",
        "Enabled": true,
        "Frequency": "sample string 5",
        "StartDate": "2024-04-18T11:04:12.1851247+00:00",
        "FinishDate": "2024-04-18T11:04:12.1851247+00:00",
        "Parameters": "sample string 7",
        "ContentType": "sample string 8",
        "Notification": "sample string 9",
        "DateCreated": "2024-04-18T11:04:12.1851247+00:00",
        "DateModified": "2024-04-18T11:04:12.1851247+00:00",
        "LastRunOn": "2024-04-18T11:04:12.1861237+00:00",
        "LastRunBy": "sample string 11",
        "LastModifiedBy": "sample string 12",
        "Status": "sample string 13",
        "ClientID": "09414239-2de5-4ae7-a76f-b213e293f3e2"
      },
      {
        "ID": "ba105bbb-6753-4975-a4d7-513636d60572",
        "TaskID": "08ca53c6-d81c-4585-917e-fbc82bcbc5de",
        "Name": "sample string 3",
        "Enabled": true,
        "Frequency": "sample string 5",
        "StartDate": "2024-04-18T11:04:12.1851247+00:00",
        "FinishDate": "2024-04-18T11:04:12.1851247+00:00",
        "Parameters": "sample string 7",
        "ContentType": "sample string 8",
        "Notification": "sample string 9",
        "DateCreated": "2024-04-18T11:04:12.1851247+00:00",
        "DateModified": "2024-04-18T11:04:12.1851247+00:00",
        "LastRunOn": "2024-04-18T11:04:12.1861237+00:00",
        "LastRunBy": "sample string 11",
        "LastModifiedBy": "sample string 12",
        "Status": "sample string 13",
        "ClientID": "09414239-2de5-4ae7-a76f-b213e293f3e2"
      }
    ]
  }
}