API Docs / Schemas / CreateTaskTemplateRequest

CreateTaskTemplateRequest

Request DTO for creating a new one-off task template

Properties

Name Type Description
name*string

The name of the task template

The name of the task template

descriptionstring

The description applied to tasks created from this template

The description applied to tasks created from this template

timeEstimateMinutesinteger

The estimated time to complete the task, in whole minutes

The estimated time to complete the task, in whole minutes

billableServiceCodestring

Code of the billable service this template is optionally associated with

Code of the billable service this template is optionally associated with

dueDateOffsetDaysinteger

Days after the creation date for the default task due date

Days after the creation date for the default task due date

assignmentTypeenum

Unassigned SpecificUser ClientManager ClientServiceManager ClientPartner ClientAssociate

Unassigned SpecificUser ClientManager ClientServiceManager ClientPartner ClientAssociate

assignedUserCodestring

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)

assignedTeamCodestring

Code of the team to assign tasks to (optional, independent of AssignmentType)

Code of the team to assign tasks to (optional, independent of AssignmentType)

workflowCodestring

Code of the workflow template to apply to created tasks

Code of the workflow template to apply to created tasks

categoryCodestring

Code of the category to apply to created tasks

Code of the category to apply to created tasks

checklistarray of ChecklistItemDto

Checklist items for this task template

Checklist items for this task template

activeboolean

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
}

Used By Operations