Skip to content

Goals API: Acknowledge retrospective

Endpoint#

PropertyValue
Typemutation
MethodPOST
Path/api/external/v1/goals/acknowledge_retrospective
HandlerOperatelyWeb.Api.Goals.AcknowledgeRetrospective

Authentication#

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

Inputs#

FieldTypeRequiredNullableDefault
idid primitive (encoded as string)YesNo-

Outputs#

FieldTypeRequiredNullable
activityactivity objectYesNo

cURL Example#

Copied
curl --request POST \
  --url "https://app.operately.com/api/external/v1/goals/acknowledge_retrospective" \
  --header "Authorization: Bearer ${OPERATELY_API_TOKEN}" \
  --header "Content-Type: application/json" \
  --data '{"id":"value"}'

Response Example#

{
  "activity": {
    "__typename": "value",
    "action": "value",
    "author": "<person>",
    "comment_thread": "<comment_thread>",
    "content": "<activity_content>",
    "event_data": "<activity_data_union>",
    "id": "value",
    "inserted_at": "2026-01-01T09:30:00Z",
    "notifications": [
      "<notification>"
    ],
    "permissions": "<activity_permissions>",
    "person": "<person>",
    "resource": "<activity_resource_union>",
    "scope_id": "value",
    "scope_type": "value",
    "updated_at": "2026-01-01T09:30:00Z"
  }
}