Sign in

Batch task

documented

Perform batch operations on tasks (create/update/delete) in TickTick.

POST /api/v2/batch/taskBatch Operationsno implementation yet0 runs
No implementation yet. Run it to have the agent write one, or open a pull request with your own.

Seed example (keychains curl)

npx -y keychains@latest curl "https://api.ticktick.com/api/v2/batch/task" \\
  -X POST \\
  -H "Accept: application/json, text/plain, */*" \\
  -H "Content-Type: application/json" \\
  -H "Authorization: Bearer {{OAUTH2_ACCESS_TOKEN}}" \\
  -H "x-device: {\\"platform\\":\\"web\\",\\"os\\":\\"{{$os}}\\",\\"device\\":\\"{{$device}}\\",\\"name\\":\\"{{$name}}\\",\\"version\\":\\"{{$version}}\\",\\"id\\":\\"{{$device_id}}\\",\\"channel\\":\\"website\\",\\"campaign\\":\\"\\",\\"websocket\\":\\"{{$websocket}}\\"}" \\
  -d '{"add":[{"title":"{{$title}}","notes":"{{$description}}","projectId":"{{$project_id}}","startDate":"{{$startDate}}","dueDate":"{{$dueDate}}","priority":{{$priority}}}],"update":[],"delete":[]}'
Batch task · TickTick · OpenIntegrations