Update task
documentedUpdate an existing task by ID.
PUT /api/v2/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://{{$cascade_instance}}.executestrategy.net/api/v2/tasks/{{$task_id}}" \
-X PUT \
-H "Authorization: Bearer {{OAUTH2_ACCESS_TOKEN}}" \
-H "Content-Type: application/json" \
-H "Accept: application/json" \
-d '{"task": "{{$title}}", "comment": "{{$description}}", "is_complete": {{$is_complete}}, "role_id": {{$role_id}}, "goal_id": {{$goal_id}}, "start_date": "{{$start_date}}", "due_date": "{{$due_date}}", "weight_id": {{$weight_id}}}'