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.
AccountTaskRequestName | 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": "282325b9-d725-4afd-b11e-3d3b60172acd", "Frequency": 0, "StartDate": "2024-12-22T09:54:10.8226964+00:00", "FinishDate": "2024-12-22T09:54:10.8226964+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>282325b9-d725-4afd-b11e-3d3b60172acd</TaskID> <Frequency>NONE</Frequency> <StartDate>2024-12-22T09:54:10.8226964+00:00</StartDate> <FinishDate>2024-12-22T09:54:10.8226964+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.
ResponseOfAccountTaskResponseName | 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": "1e0bfd78-0a12-44af-b227-f61b0b54c503", "TaskID": "cfebc9b2-19e1-47db-8f1e-7ae01a7a2f13", "Name": "sample string 3", "Enabled": true, "Frequency": "sample string 5", "StartDate": "2024-12-22T09:54:10.8292589+00:00", "FinishDate": "2024-12-22T09:54:10.8292589+00:00", "Parameters": "sample string 7", "ContentType": "sample string 8", "Notification": "sample string 9", "DateCreated": "2024-12-22T09:54:10.8292589+00:00", "DateModified": "2024-12-22T09:54:10.8292589+00:00", "LastRunOn": "2024-12-22T09:54:10.8292589+00:00", "LastRunBy": "sample string 11", "LastModifiedBy": "sample string 12", "Status": "sample string 13", "ClientID": "d7b9b998-dc1d-4520-be68-3742d70790d9" } } }