Endpoint#
| Property | Value |
|---|
| Type | mutation |
| Method | POST |
| Path | /api/external/v1/acknowledge_goal_progress_update |
| Handler | OperatelyWeb.Api.Mutations.AcknowledgeGoalProgressUpdate |
Authentication#
- Requires a valid API token.
- Requires a write-enabled token.
- Read-only tokens return
403.
| Field | Type | Required | Nullable | Default |
|---|
id | 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/acknowledge_goal_progress_update" \
--header "Authorization: Bearer ${OPERATELY_API_TOKEN}" \
--header "Content-Type: application/json" \
--data '{"id":"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>"
}
}