Skip to main content
POST
Update task assignee

Overview

Update the assignee of a specific task. This endpoint allows you to reassign tasks to different team members or unassign tasks.

Path Parameters

integer
required
The unique identifier of the task to update the assignee for.Example: 456

Request Body

integer
required
User ID of the person to assign this task to. Set to null to unassign the task.Example: 5
string
Optional comment to include in the assignment notification.Example: "This task is high priority. Please review by EOD."

Response

integer
The unique identifier of the task.
string
The name of the task.
integer
The ID of the project this task belongs to.
integer
User ID of the person now assigned to this task.
string
The timestamp when the assignee was updated (ISO 8601 format).

Example Request

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

taskId
integer<int64>
required

The unique identifier of the task

Example:

456

Body

application/json
assignee
integer<int64>
required

User ID of the person to assign this task to

Example:

5

comment
string

Optional comment about the assignment change

Example:

"This task is high priority. Please review by EOD."

Response

Update assignee response