v1

latestOpenAPI 3.1.02026-07-24172151607.6 KB
Task Checklists

Create Checklist

Add a new checklist to a task.

post/v2/task/{task_id}/checklist

Path parameters

task_idstring required
Example:9hz

Query parameters

custom_task_idsboolean
Example:true

If you want to reference a task by it's custom task id, this value must be true.

team_idnumber
Example:123

When the custom_task_ids parameter is set to true, the Workspace ID must be provided using the team_id parameter.
For example: custom_task_ids=true&team_id=123.

Request body

namestring required

Example request

{
  "name": "Checklist"
}

Response

Example response

{
  "checklist": {
    "id": "b955c4dc-b8a8-48d8-a0c6-b4200788a683",
    "task_id": "9hz",
    "name": "Checklist",
    "orderindex": 0,
    "resolved": 0,
    "unresolved": 0,
    "items": []
  }
}