POST api/v2/admin/tasks/account
Creates a new task for the account. Before a new task can be created a client must have been created before hand.
Request Information
URI Parameters
None.
Body Parameters
The details of the task to be created.
AccountTaskRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| 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:
{
"TaskID": "eca8d3d6-48e6-4ee1-a420-0a4525e255f8",
"Frequency": 0,
"StartDate": "2026-08-18T11:32:47.7239526+00:00",
"FinishDate": "2026-08-18T11:32:47.7239526+00:00",
"Parameters": "sample string 3",
"ContentType": "sample string 4",
"Notification": 0
}
application/xml, text/xml
Sample:
<AccountTaskRequest xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <TaskID>eca8d3d6-48e6-4ee1-a420-0a4525e255f8</TaskID> <Frequency>NONE</Frequency> <StartDate>2026-08-18T11:32:47.7239526+00:00</StartDate> <FinishDate>2026-08-18T11:32:47.7239526+00:00</FinishDate> <Parameters>sample string 3</Parameters> <ContentType>sample string 4</ContentType> <Notification>NONE</Notification> </AccountTaskRequest>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
The task details with its ID field populated.
ResponseOfAccountTaskResponse| Name | Description | Type | Additional 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": "b44cf0d1-a760-4d96-9158-94e44a1ae0ee",
"TaskID": "cf24284a-136b-4cf5-90df-7cbfab7caadd",
"Name": "sample string 3",
"Enabled": true,
"Frequency": "sample string 5",
"StartDate": "2026-08-18T11:32:47.7289501+00:00",
"FinishDate": "2026-08-18T11:32:47.7299505+00:00",
"Parameters": "sample string 7",
"ContentType": "sample string 8",
"Notification": "sample string 9",
"DateCreated": "2026-08-18T11:32:47.7299505+00:00",
"DateModified": "2026-08-18T11:32:47.7299505+00:00",
"LastRunOn": "2026-08-18T11:32:47.7299505+00:00",
"LastRunBy": "sample string 11",
"LastModifiedBy": "sample string 12",
"Status": "sample string 13",
"ClientID": "b47eb390-1e4b-46e6-b302-6e362914e378"
}
}
}