Endpoint#
| Property | Value |
|---|
| Type | mutation |
| Method | POST |
| Path | /api/external/v1/project_templates/create_link |
| Handler | OperatelyWeb.Api.ProjectTemplates.CreateLink |
Authentication#
- Requires a valid API token.
- Requires a write-enabled token.
- Read-only tokens return
403.
| Field | Type | Required | Nullable | Default |
|---|
template_id | id primitive (encoded as string) | Yes | No | - |
parent_folder_id | id primitive (encoded as string) | No | Yes | - |
name | string | Yes | No | - |
url | string | Yes | No | - |
description | json primitive (encoded as string) | No | Yes | - |
type | project_template_resource_link_type enum (airtable, dropbox, figma, google, google_doc, google_sheet, google_slides, notion, other) | Yes | No | - |
Outputs#
| Field | Type | Required | Nullable |
|---|
link | project_template_resource_link object | Yes | No |
cURL Example#
Copiedcurl --request POST \
--url "https://app.operately.com/api/external/v1/project_templates/create_link" \
--header "Authorization: Bearer ${OPERATELY_API_TOKEN}" \
--header "Content-Type: application/json" \
--data '{"description":"value", "name":"value", "parent_folder_id":"value", "template_id":"value", "type":"airtable", "url":"value"}'
Response Example#
{
"link": {
"__typename": "value",
"author": "<person>",
"description": "value",
"id": "value",
"inserted_at": "2026-01-01T09:30:00Z",
"name": "value",
"node_id": "value",
"type": "airtable",
"updated_at": "2026-01-01T09:30:00Z",
"url": "value"
}
}