Endpoint#
| Property | Value |
|---|
| Type | mutation |
| Method | POST |
| Path | /api/external/v1/goals/acknowledge_retrospective |
| Handler | OperatelyWeb.Api.Goals.AcknowledgeRetrospective |
Authentication#
- Requires a valid API token.
- Requires a write-enabled token.
- Read-only tokens return
403.
| Field | Type | Required | Nullable | Default |
|---|
id | id primitive (encoded as string) | Yes | No | - |
Outputs#
| Field | Type | Required | Nullable |
|---|
activity | activity object | Yes | No |
cURL Example#
Copiedcurl --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"
}
}