Sign in

Create task

documented

Create a task.

POST /v1/tasksTasksno 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.marketcircle.net/v1/tasks" \
  -X POST \
  -H "Authorization: Bearer {{OAUTH2_ACCESS_TOKEN}}" \
  -H "Content-Type: application/json" \
  -H "Accept: application/json" \
  -d '{"title": "{{$title}}", "details": "{{$details}}", "due": "{{$due}}", "location": "{{$location}}", "type": "{{$type}}", "status": "{{$status}}", "priority": "{{$priority}}", "started": "{{$started}}", "completed": "{{$completed}}", "estimated_time": {{$estimated_time}}, "parent_task_id": {{$parent_task_id}}, "owner_id": {{$owner_id}}, "creator_id": {{$creator_id}}}'