TaskAssignRequest
TaskAssignRequest - request params used to assign the task to assignee
or current user.
- Schema
- Example value
{
"assignee": string,
"allowOverrideAssignment": boolean
}
{
"assignee": "string",
"allowOverrideAssignment": true
}
Fields
TaskAssignRequest.assignee
● string
When using a
JWT
token, the assignee parameter is NOT optional when called directly from the API. The system will not be able to detect the assignee from the JWT token, therefore the assignee parameter needs to be explicitly passed in this instance.
TaskAssignRequest.allowOverrideAssignment
● boolean
When
true
the task that is already assigned may be reassigned again. Otherwise, the task must be first unassigned and only then assigned again. (Default:true
).
Consumed by
Assign task
PATCH