Sign in

Partial update key result

documented

Update parts of a key result.

PATCH /goals/{goal_id}/key_results/{key_result_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}}/key_results/{{$key_result_id}}" \
  -X PATCH \
  -H "Authorization: Bearer {{OAUTH2_ACCESS_TOKEN}}" \
  -H "Content-Type: application/json" \
  -H "Accept: application/json" \
  -d '{"name": "{{$name}}", "start": "{{$start}}", "end": "{{$end}}", "type": "{{$type}}", "target": {{$target}}, "unit": "{{$unit}}", "initial": {{$initial}}, "auto_target": {{$auto_target}}, "attribute_scope": "{{$attribute_scope}}", "attribute_type": "{{$attribute_type}}"}'
Partial update key result · WorkBoard · OpenIntegrations