Skip to content

acknowledge_goal_progress_update

Endpoint#

PropertyValue
Typemutation
MethodPOST
Path/api/external/v1/acknowledge_goal_progress_update
HandlerOperatelyWeb.Api.Mutations.AcknowledgeGoalProgressUpdate

Authentication#

  • Requires a valid API token.
  • Requires a write-enabled token.
  • Read-only tokens return 403.

Inputs#

FieldTypeRequiredNullableDefault
idstringNoYes-

Outputs#

FieldTypeRequiredNullable
updategoal_progress_update objectNoYes

cURL Example#

Copied
curl --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>"
  }
}