get_project
Retrieve a specific Todoist project by its unique ID to access project details and manage tasks within that project.
Instructions
Get a specific project by ID.
Args:
project_id: The ID of the project to retrieve
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| project_id | Yes |
Input Schema (JSON Schema)
{
"properties": {
"project_id": {
"title": "Project Id",
"type": "string"
}
},
"required": [
"project_id"
],
"type": "object"
}