Endpoint#
| Property | Value |
|---|
| Type | mutation |
| Method | POST |
| Path | /api/external/v1/post_goal_progress_update |
| Handler | OperatelyWeb.Api.Mutations.PostGoalProgressUpdate |
Authentication#
- Requires a valid API token.
- Requires a write-enabled token.
- Read-only tokens return
403.
| Field | Type | Required | Nullable | Default |
|---|
goal_id | id primitive (encoded as string) | Yes | No | - |
status | string | Yes | No | - |
due_date | contextual_date object | Yes | Yes | - |
checklist | array of goal_check_update object | Yes | No | - |
content | json primitive (encoded as string) | No | Yes | - |
new_target_values | string | No | Yes | - |
send_notifications_to_everyone | boolean | No | Yes | - |
subscriber_ids | array of string | No | Yes | - |
Outputs#
| Field | Type | Required | Nullable |
|---|
update | goal_progress_update object | No | Yes |
cURL Example#
Copiedcurl --request POST \
--url "https://app.operately.com/api/external/v1/post_goal_progress_update" \
--header "Authorization: Bearer ${OPERATELY_API_TOKEN}" \
--header "Content-Type: application/json" \
--data '{"checklist":[{"completed":true, "id":"value", "index":123, "name":"value"}], "content":"value", "due_date":{"date":"2026-01-01", "date_type":"day", "value":"value"}, "goal_id":"value", "new_target_values":"value", "send_notifications_to_everyone":true, "status":"value", "subscriber_ids":["value"]}'
Response Example#
{
"update": {
"acknowledged": true,
"acknowledged_at": "2026-01-01T09:30:00Z",
"acknowledging_person": "<person>",
"author": "<person>",
"checklist": [
"<goal_check_update>"
],
"comments_count": 123,
"goal": "<goal>",
"goal_target_updates": [
"<goal_target_updates>"
],
"id": "value",
"inserted_at": "2026-01-01T09:30:00Z",
"message": "value",
"notifications": [
"<notification>"
],
"permissions": "<goal_update_permissions>",
"potential_subscribers": [
"<subscriber>"
],
"reactions": [
"<reaction>"
],
"status": "value",
"subscription_list": "<subscription_list>",
"timeframe": "<timeframe>"
}
}