PUT api/v1/admin/tasks/account/{id}

Updates an existing task on the account.

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

The ID of the task that is being updated.

globally unique identifier

Required

Body Parameters

The new details of the task

AccountTaskUpdateRequest
NameDescriptionTypeAdditional information
Enabled

Determines whether the task registered on the account is enabled or disabled.

boolean

None.

TaskID

The ID of the task to be registered.

globally unique identifier

Required

Frequency

How often the task should run.

Frequency

Required

StartDate

Determines when the task should start running.

date

None.

FinishDate

Determines when the task should stop running.

date

None.

Parameters

The parameters for the task.

string

Required

ContentType

The format the parameters are in. Must either be application/xml or application/json.

string

Required

Notification

Determines the notifications the task could send back to the user.

TaskNotification

None.

Request Formats

application/json, text/json

Sample:
{
  "Enabled": true,
  "TaskID": "bc8c6119-d4bf-4456-985a-8a77320c4cd4",
  "Frequency": 0,
  "StartDate": "2024-03-28T17:57:19.992375+00:00",
  "FinishDate": "2024-03-28T17:57:19.992375+00:00",
  "Parameters": "sample string 3",
  "ContentType": "sample string 4",
  "Notification": 0
}

application/xml, text/xml

Sample:
<AccountTaskUpdateRequest xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <TaskID>bc8c6119-d4bf-4456-985a-8a77320c4cd4</TaskID>
  <Frequency>NONE</Frequency>
  <StartDate>2024-03-28T17:57:19.992375+00:00</StartDate>
  <FinishDate>2024-03-28T17:57:19.992375+00:00</FinishDate>
  <Parameters>sample string 3</Parameters>
  <ContentType>sample string 4</ContentType>
  <Notification>NONE</Notification>
  <Enabled>true</Enabled>
</AccountTaskUpdateRequest>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

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": "db822623-2a65-498f-ace3-fc6ec21d4d15",
      "TaskID": "8e409bb2-c660-4e2f-8a76-bbf94e1465c3",
      "Name": "sample string 3",
      "Enabled": true,
      "Frequency": "sample string 5",
      "StartDate": "2024-03-28T17:57:19.9994177+00:00",
      "FinishDate": "2024-03-28T17:57:19.9994177+00:00",
      "Parameters": "sample string 7",
      "ContentType": "sample string 8",
      "Notification": "sample string 9",
      "DateCreated": "2024-03-28T17:57:19.9994177+00:00",
      "DateModified": "2024-03-28T17:57:19.9994177+00:00",
      "LastRunOn": "2024-03-28T17:57:19.9994177+00:00",
      "LastRunBy": "sample string 11",
      "LastModifiedBy": "sample string 12",
      "Status": "sample string 13",
      "ClientID": "71178a4d-1491-4a23-b65a-bfc9978f41ca"
    }
  }
}