Update task (assign to user)
documentedUpdate an existing task and assign it to a user.
PUT /v1/tasks/{id}Tasksno implementation yet0 runsNo 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 'Content-Type: application/json' \
-H 'Accept: application/json' \
-H 'Authorization: Bearer {{OAUTH2_ACCESS_TOKEN}}' \
-d '{"name":"{{$title}}","due_date":"{{$due_date}}","complete":{{$complete}},"frame":"{{$frame}}","description":"{{$description}}","linked_to":[{"id":{{$linked_to_id}},"type":"{{$linked_to_type}}"}],"repeats":{{$repeats}},"completer":{{$completer}},"assigned_to":{{$assigned_to}},"assigned_to_team":{{$assigned_to_team}}}'