Sign in

Update task and assign to a team

documented

Update an existing task and assign it to a team (specialized endpoint in docs).

PUT /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/{{$task_id}}" \
  -X PUT \
  -H "Authorization: Bearer {{OAUTH2_ACCESS_TOKEN}}" \
  -H "Content-Type: application/json" \
  -H "Accept: application/json" \
  -d '{ "name": "{{$name}}", "due_date": "{{$due_date}}", "complete": {{$complete}}, "category": {{$category}}, "linked_to": [ {"id": {{$linked_id}}, "type": "{{$linked_type}}", "name": "{{$linked_name}}"} ] }'