Sign in

Partial update goal

documented

Update parts of a goal.

PATCH /goals/{goal_id}Goalsno 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.workboard.com/v1/goals/{{$goal_id}}" \
  -X PATCH \
  -H "Authorization: Bearer {{OAUTH2_ACCESS_TOKEN}}" \
  -H "Content-Type: application/json" \
  -H "Accept: application/json" \
  -d '{"name": "{{$title}}", "description": "{{$description}}", "startDate": "{{$startDate}}", "endDate": "{{$endDate}}", "parentId": "{{$parentId}}", "rank": {{$rank}}, "scorecardId": "{{$scorecardId}}", "status": "{{$status}}", "notes": "{{$notes}}"}'