Sign in

Create task

documented

Create a new task within a checklist.

POST /checklists/{checklist_id}/tasks.(json|xml)Checklistsno 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://checkvist.com/checklists/{{$checklist_id}}/tasks.json\" \
  -X POST \
  -H \"Content-Type: application/json\" \
  -H \"Accept: application/json\" \
  -H \"X-Client-Token: {{OAUTH2_ACCESS_TOKEN}}\" \
  -d '{ \"task\": { \"content\": \"{{$content}}\", \"parent_id\": \"{{$parent_id}}\", \"tags\": \"{{$tags}}\", \"due_date\": \"{{$due_date}}\", \"position\": \"{{$position}}\", \"priority\": \"{{$priority}}\", \"status\": \"{{$status}}\" } }'
Create task · checkvist · OpenIntegrations