Endpoint#
| Property | Value |
|---|
| Type | query |
| Method | GET |
| Path | /api/external/v1/get_project_retrospective |
| Handler | OperatelyWeb.Api.Queries.GetProjectRetrospective |
Authentication#
- Requires a valid API token.
- Read-only and full-access tokens can execute this query.
| Field | Type | Required | Nullable | Default |
|---|
project_id | id primitive (encoded as string) | Yes | No | - |
include_author | boolean | No | Yes | - |
include_project | boolean | No | Yes | - |
include_closed_at | boolean | No | Yes | - |
include_permissions | boolean | No | Yes | - |
include_reactions | boolean | No | Yes | - |
include_subscriptions_list | boolean | No | Yes | - |
include_potential_subscribers | boolean | No | Yes | - |
include_unread_notifications | boolean | No | Yes | - |
Outputs#
| Field | Type | Required | Nullable |
|---|
retrospective | project_retrospective object | Yes | No |
cURL Example#
Copiedcurl --request GET \
--url "https://app.operately.com/api/external/v1/get_project_retrospective?include_author=true&include_closed_at=true&include_permissions=true&include_potential_subscribers=true&include_project=true&include_reactions=true&include_subscriptions_list=true&include_unread_notifications=true&project_id=value" \
--header "Authorization: Bearer ${OPERATELY_API_TOKEN}"
Response Example#
{
"retrospective": {
"author": "<person>",
"closed_at": "2026-01-01",
"content": "value",
"id": "value",
"notifications": [
"<notification>"
],
"permissions": "<project_permissions>",
"potential_subscribers": [
"<subscriber>"
],
"project": "<project>",
"reactions": [
"<reaction>"
],
"subscription_list": "<subscription_list>"
}
}