Create a new task
Creates a task in the authenticated account. If project_id is provided without column_id, the API automatically uses the first column in the project. The internal DTO contains created_at and is_closed, but this route does not apply those fields.
Authorizations
JWT token obtained from /v2/auth/login. Send it in the header:
Authorization: Bearer <your_token>
Body
Title shown on the task card.
"Document task creation"
Detailed task description.
"Add request fields, response schema, and examples for POST /v2/tasks."
Client ID linked to the task. It must belong to the authenticated account.
42
Primary responsible user ID.
17
Desired due date in ISO 8601 format.
"2026-05-20T18:00:00.000Z"
Planned start date in ISO 8601 format.
"2026-05-19T12:00:00.000Z"
Completion timestamp in ISO 8601 format.
"2026-05-21T21:30:00.000Z"
Planned end date in ISO 8601 format.
"2026-05-30T18:00:00.000Z"
Numeric task status. When omitted, the API uses 0.
0
Urgency label. When omitted, the API uses the raw value Baixa.
"Alta"
Estimated effort in HHH:MM format.
"008:00"
Budgeted effort in HHH:MM format.
"012:00"
Project ID for the task.
8
Column ID where the task should be created. If omitted with project_id, the API uses the first project column.
31
Competence linked to the task, when applicable.
202605
Task type ID.
5
Related contract ID.
19
Parent task ID. When provided, the new task is created as a subtask.
1201
Marks the task as a bug.
false
Legacy raw tags field persisted on the task record.
"fiscal,api"
Comma-separated tag IDs used to create task_tags relationships.
3813
Checklist payload persisted as a string.
[
{ "text": "Validate payload", "done": false }
]ID of the received form that originated the task.
77
Explicit task followers.
Tags to be attached to the task.
Additional responsible users. During creation, the API uses the user field to create the relationships.
Custom field values. Each item must include uuid and value.
Response
Task created successfully
Internal task ID.
1532
Public numeric task identifier.
1532
"Document task creation"
"Add request fields, response schema, and examples for POST /v2/tasks."
0
"2026-05-20T18:00:00.000Z"
null
"2026-05-19T12:00:00.000Z"
null
"Alta"
false
"008:00"
"000:00"
"012:00"
5
19
null
null
8
"API Documentation"
31
"Backlog"

