clickup_create_checklist_item
Add a new line item to an existing ClickUp checklist. Provide the checklist ID and item name, with an optional assignee.
Instructions
Add a new line item to an existing checklist.
When to Use:
Adding a to-do line to a checklist created with
clickup_create_checklist.
When NOT to Use:
To create the checklist itself first — use
clickup_create_checklist.
Returns: A confirmation string; when the API response includes the new item's id it is included, otherwise only the item name and checklist id are echoed.
Examples: params = {"checklist_id": "b8a8...", "name": "Write tests"} params = {"checklist_id": "b8a8...", "name": "Review PR", "assignee": 183}
Error Handling: 404 means the checklist_id does not exist; 400 for an invalid assignee id.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| params | Yes |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |