Sign in

Create task and assign to a team

documented

Create a new task and assign it to a team.

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.crmworkspace.com/v1/tasks" \
  -X POST \
  -H "ACCESS_TOKEN: {{WEALTHBOX_ACCESS_TOKEN}}" \
  -H "Content-Type: application/json" \
  -H "Accept: application/json" \
  -d '{"name": "{{$title}}", "due_date": "{{$due_date}}", "complete": {{$complete}}, "category": {{$category}}, "linked_to": [{"id": {{$linked_id}}, "type": "user"}]}'