Sign in

Create task

documented

Create a new task in the current space.

POST /v1/api/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.nozbe.com/v1/main/tasks" \
  -X POST \
  -H "Authorization: Bearer {{OAUTH2_ACCESS_TOKEN}}" \
  -H "X-Nozbe-Api-Key: {{NOZBE_API_KEY}}" \
  -H "Content-Type: application/json" \
  -H "Accept: application/json" \
  -d '{"title": "{{$title}}", "description": "{{$description}}", "project_id": {{$project_id}}, "due_date": "{{$due_date}}", "priority": {{$priority}} }'