v53

latestOpenAPI 3.0.1raw.githubusercontent.com2026-07-31147343479.6 KB
Templates

Get Notification Template

Retrieve a notification template by ID. Returns the published version by default. Pass version=draft to retrieve an unpublished template.

get/notifications/{id}

Path parameters

idstring required

Template ID (nt_ prefix).

Query parameters

versionstring

Version to retrieve. One of "draft", "published", or a version string like "v001". Defaults to "published".

Response

namestring required

Display name for the template.

tagsstring[] required

Tags for categorization. Send empty array for none.

idstring required

The template ID.

state'DRAFT' | 'PUBLISHED' required

The template state. Always uppercase.

createdinteger required

Epoch milliseconds when the template was created.

creatorstring required

User ID of the creator.

updatedinteger

Epoch milliseconds of last update.

updaterstring

User ID of the last updater.

Example response

{
  "content": {
    "elements": [
      {
        "channel": "email"
      }
    ]
  }
}