Delete task
documentedDelete a task from a project.
DELETE /open/v1/project/{projectId}/task/{taskId}Tasksno implementation yet0 runsNo implementation yet. Run it to have the agent write one, or open a pull request with your own.
Seed example (keychains curl)
I found TickTick's official Open API docs confirming the endpoint and host. The DELETE /open/v1/project/{projectId}/task/{taskId} operation is exposed under the TickTick Open API on ticktick.com. (Docs: https://developer.ticktick.com/docs/index.html; Server shown as https://ticktick.com) ([developer.ticktick.com](https://developer.ticktick.com/docs/index.html))
npx -y keychains@latest curl "https://ticktick.com/open/v1/project/{{$projectId}}/task/{{$taskId}}" \
-X DELETE \
-H "Authorization: Bearer {{OAUTH2_ACCESS_TOKEN}}" \
-H "Accept: application/json" \
-H "Content-Type: application/json"