Endpoint#
| Property | Value |
|---|
| Type | query |
| Method | GET |
| Path | /api/external/v1/goals/list_discussions |
| Handler | OperatelyWeb.Api.Goals.ListDiscussions |
Authentication#
- Requires a valid API token.
- Read-only and full-access tokens can execute this query.
| Field | Type | Required | Nullable | Default |
|---|
goal_id | id primitive (encoded as string) | Yes | No | - |
Outputs#
| Field | Type | Required | Nullable |
|---|
discussions | array of goal_discussion object | Yes | No |
cURL Example#
Copiedcurl --request GET \
--url "https://app.operately.com/api/external/v1/goals/list_discussions?goal_id=value" \
--header "Authorization: Bearer ${OPERATELY_API_TOKEN}"
Response Example#
{
"discussions": [
{
"__typename": "value",
"activity_id": "value",
"author": "<person>",
"comment_count": 123,
"content": "value",
"id": "value",
"inserted_at": "2026-01-01",
"title": "value"
}
]
}