Goals
Update Goal Status
Updates the status of an existing goal, optionally including a comment. <br>This endpoint is used to update the status independently from other goal fields such as title, description, or due date. <br><br>Note: In Bob, status changes are performed through a dedicated workflow (e.g., goal check-ins), which is why this action is exposed via a separate endpoint.
patch/goals/goals/{goalId}/status
Path parameters
goalIdinteger required
The unique identifier of the goal to update
Request body
Example request
{
"status": "completed",
"comment": "Goal achieved ahead of schedule"
}Response
Goal status updated successfully
Example response
{
"success": true,
"goalId": 123,
"status": "completed"
}