goals_update
Update existing goals by modifying properties like title, type, assignee, expected outcome, duration, or interval. Changes take effect immediately in goal tracking.
Instructions
Update an existing goal.
Updates goal properties such as title, type, assignee, expected outcome, duration, or interval.
Workflow tips:
Use goals/list to find the goal ID first
Only include fields you want to update
Changes take effect immediately in goal tracking
Common use cases:
Adjust target value: { "id": "goal-id", "expected_outcome": { "target": 50000, "tracking_metric": "sum" } }
Change assignee: { "id": "goal-id", "assignee": { "id": 456, "type": "person" } }
Update title: { "id": "goal-id", "title": "New Goal Title" }
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | ID of the goal to update | |
| type | No | Goal type configuration | |
| title | No | Goal title | |
| assignee | No | User or team assigned to this goal | |
| duration | No | Goal duration period | |
| interval | No | Goal interval | |
| expected_outcome | No | Expected outcome configuration |