goals_update
Update goal properties such as title, type, assignee, target value, or duration. 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 | |
| title | No | Goal title | |
| type | No | Goal type configuration | |
| assignee | No | User or team assigned to this goal | |
| expected_outcome | No | Expected outcome configuration | |
| duration | No | Goal duration period | |
| interval | No | Goal interval |