Endpoint#
| Property | Value |
|---|
| Type | query |
| Method | GET |
| Path | /api/external/v1/project_templates/get_discussion |
| Handler | OperatelyWeb.Api.ProjectTemplates.GetDiscussion |
Authentication#
- Requires a valid API token.
- Read-only and full-access tokens can execute this query.
| Field | Type | Required | Nullable | Default |
|---|
template_id | id primitive (encoded as string) | Yes | No | - |
discussion_id | id primitive (encoded as string) | Yes | No | - |
Outputs#
| Field | Type | Required | Nullable |
|---|
discussion | project_template_discussion object | Yes | No |
cURL Example#
Copiedcurl --request GET \
--url "https://app.operately.com/api/external/v1/project_templates/get_discussion?discussion_id=value&template_id=value" \
--header "Authorization: Bearer ${OPERATELY_API_TOKEN}"
Response Example#
{
"discussion": {
"__typename": "value",
"author": "<person>",
"body": "value",
"id": "value",
"inserted_at": "2026-01-01T09:30:00Z",
"position": 123,
"project_template_id": "value",
"title": "value",
"updated_at": "2026-01-01T09:30:00Z"
}
}