create_todo
Add a new task to a Basecamp to-do list with specified content, description, and due date for project management.
Instructions
Create a new to-do in the given list.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| content | Yes | ||
| description | No | ||
| due_on | No | ||
| project_id | Yes | ||
| todolist_id | Yes |
Input Schema (JSON Schema)
{
"properties": {
"content": {
"type": "string"
},
"description": {
"type": "string"
},
"due_on": {
"pattern": "^\\d{4}-\\d{2}-\\d{2}$",
"type": "string"
},
"project_id": {
"type": "integer"
},
"todolist_id": {
"type": "integer"
}
},
"required": [
"project_id",
"todolist_id",
"content"
],
"type": "object"
}