Sign in

Create task

documented

Create a new task in a project.

POST /open/v1/taskTasksno 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/open/v1/task" \
  -X POST \
  -H "Authorization: Bearer {{OAUTH2_ACCESS_TOKEN}}" \
  -H "Content-Type: application/json" \
  -H "Accept: application/json" \
  -d '{"title": "{{$title}}", "projectId": "{{$projectId}}", "content": "{{$content}}", "desc": "{{$desc}}", "isAllDay": {{$isAllDay}}, "startDate": "{{$startDate}}", "dueDate": "{{$dueDate}}", "timeZone": "{{$timeZone}}", "reminders": {{$reminders}}, "repeatFlag": "{{$repeatFlag}}", "priority": {{$priority}}, "sortOrder": {{$sortOrder}}, "items": {{$items}} }'
Create task · TickTick · OpenIntegrations