Skip to content

Project Templates API: Create link

Endpoint#

PropertyValue
Typemutation
MethodPOST
Path/api/external/v1/project_templates/create_link
HandlerOperatelyWeb.Api.ProjectTemplates.CreateLink

Authentication#

  • Requires a valid API token.
  • Requires a write-enabled token.
  • Read-only tokens return 403.

Inputs#

FieldTypeRequiredNullableDefault
template_idid primitive (encoded as string)YesNo-
parent_folder_idid primitive (encoded as string)NoYes-
namestringYesNo-
urlstringYesNo-
descriptionjson primitive (encoded as string)NoYes-
typeproject_template_resource_link_type enum (airtable, dropbox, figma, google, google_doc, google_sheet, google_slides, notion, other)YesNo-

Outputs#

FieldTypeRequiredNullable
linkproject_template_resource_link objectYesNo

cURL Example#

Copied
curl --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"
  }
}