todoist_delete_project
Removes a specific project from your Todoist account using the project ID. Streamlines project management by enabling quick deletion of unnecessary or completed projects.
Instructions
Deletes a project from the user's Todoist account
Args: project_id: ID of the project to delete
Input Schema
Name | Required | Description | Default |
---|---|---|---|
project_id | Yes |
Input Schema (JSON Schema)
{
"properties": {
"project_id": {
"title": "Project Id",
"type": "string"
}
},
"required": [
"project_id"
],
"title": "todoist_delete_projectArguments",
"type": "object"
}