get_todos
Retrieve todos from a specific todo list in Basecamp by providing the project ID and todo list ID. Simplifies task management through direct API integration.
Instructions
Get todos from a todo list
Input Schema
Name | Required | Description | Default |
---|---|---|---|
project_id | Yes | Project ID | |
todolist_id | Yes | The todo list ID |
Input Schema (JSON Schema)
{
"properties": {
"project_id": {
"description": "Project ID",
"type": "string"
},
"todolist_id": {
"description": "The todo list ID",
"type": "string"
}
},
"required": [
"project_id",
"todolist_id"
],
"type": "object"
}