UpdateTaskTemplateRequest
Request DTO for updating a one-off task template
Properties
| Name | Type | Description |
|---|---|---|
| name* | string | The name of the task template |
The name of the task template | ||
| description | string | The description applied to tasks created from this template |
The description applied to tasks created from this template | ||
| timeEstimateMinutes | integer | The estimated time to complete the task, in whole minutes |
The estimated time to complete the task, in whole minutes | ||
| billableServiceCode | string | Code of the billable service this template is optionally associated with |
Code of the billable service this template is optionally associated with | ||
| dueDateOffsetDays | integer | Days after the creation date for the default task due date |
Days after the creation date for the default task due date | ||
| assignmentType | enum | Unassigned SpecificUser ClientManager ClientServiceManager ClientPartner ClientAssociate |
Unassigned SpecificUser ClientManager ClientServiceManager ClientPartner ClientAssociate | ||
| assignedUserCode | string | Code of the user to assign tasks to (only used if AssignmentType is SpecificUser) |
Code of the user to assign tasks to (only used if AssignmentType is SpecificUser) | ||
| assignedTeamCode | string | Code of the team to assign tasks to (optional, independent of AssignmentType) |
Code of the team to assign tasks to (optional, independent of AssignmentType) | ||
| workflowCode | string | Code of the workflow template to apply to created tasks |
Code of the workflow template to apply to created tasks | ||
| categoryCode | string | Code of the category to apply to created tasks |
Code of the category to apply to created tasks | ||
| checklist | array of ChecklistItemDto | Checklist items for this task template |
Checklist items for this task template | ||
| active | boolean | Whether this template is active (inactive templates are hidden when creating tasks) |
Whether this template is active (inactive templates are hidden when creating tasks) | ||
JSON Example
{
"name": "string",
"description": "string",
"timeEstimateMinutes": 0,
"billableServiceCode": "string",
"dueDateOffsetDays": 0
}