todoist_labels
Manage Todoist labels by creating, reading, updating, and deleting them with full CRUD operations for organized task categorization.
Instructions
label management for Todoist - create, read, update, delete labels with full CRUD operations
Input Schema
Name | Required | Description | Default |
---|---|---|---|
action | Yes | Action to perform on labels | |
color | No | Predefined color ID | |
cursor | No | Pagination cursor (for list action) | |
is_favorite | No | Mark as favorite | |
label_id | No | Label ID (required for get, update, delete) | |
limit | No | Page size (for list action, default 50, max 200) | |
name | No | Label name (required for create, rename_shared) | |
new_name | No | New label name (required for rename_shared) | |
order | No | Display order |
Input Schema (JSON Schema)
{
"properties": {
"action": {
"description": "Action to perform on labels",
"enum": [
"create",
"get",
"update",
"delete",
"list",
"rename_shared",
"remove_shared"
],
"type": "string"
},
"color": {
"description": "Predefined color ID",
"type": "string"
},
"cursor": {
"description": "Pagination cursor (for list action)",
"type": "string"
},
"is_favorite": {
"description": "Mark as favorite",
"type": "boolean"
},
"label_id": {
"description": "Label ID (required for get, update, delete)",
"type": "string"
},
"limit": {
"description": "Page size (for list action, default 50, max 200)",
"type": "number"
},
"name": {
"description": "Label name (required for create, rename_shared)",
"type": "string"
},
"new_name": {
"description": "New label name (required for rename_shared)",
"type": "string"
},
"order": {
"description": "Display order",
"type": "number"
}
},
"required": [
"action"
],
"type": "object"
}