CreateTaskItemRequest
Request model for creating a new task
Properties
| Name | Type | Description |
|---|---|---|
| name* | string | The name of the task |
The name of the task | ||
| description* | string | The description of the task |
The description of the task | ||
| status* | enum | NotStarted InProgress Blocked Completed Skipped |
NotStarted InProgress Blocked Completed Skipped | ||
| timeEstimate | number | The estimated time to complete the task in hours |
The estimated time to complete the task in hours | ||
| startDate* | string | When the task starts |
When the task starts | ||
| dueDate* | string | When the task is due |
When the task is due | ||
| statutoryDueDate | string | The statutory due date for compliance tasks (if applicable) |
The statutory due date for compliance tasks (if applicable) | ||
| clientCodes | array of string | The codes of the clients this task is associated with (optional) |
The codes of the clients this task is associated with (optional) | ||
| primaryClientCode | string | The code of the primary client for this task (optional) |
The code of the primary client for this task (optional) | ||
| assignedUserCode | string | The code of the user to assign the task to (optional) |
The code of the user to assign the task to (optional) | ||
| categoryCode | string | The code of the category for this task (optional) |
The code of the category for this task (optional) | ||
JSON Example
{
"name": "string",
"description": "string",
"status": "NotStarted",
"timeEstimate": 0,
"startDate": "2024-01-01",
"dueDate": "2024-01-01"
}