Create checklist with items for a task
POST/api/v2/checklist/items
- This API is used inside tasks to manage checklist items.
- Each checklist subitem is created using a separate API request.
- Multiple checklist subitems are created by making multiple API calls.
- The
parentIdfield determines nesting:- For the very first checklist subitem under a task,
parentIdmust be null or empty. - For nested subitems,
parentIdmust contain the ID of the parent checklist subitem.
- For the very first checklist subitem under a task,
Request
Responses
- 200
Checklist and sub-items created successfully