v53

OpenAPI 3.0.1raw.githubusercontent.com2026-07-31147343479.6 KB
Journeys

Replace a journey-scoped notification template

Replaces the draft content of one journey's notification template. Publish it before send nodes referencing it render the change.

put/journeys/{templateId}/templates/{notificationId}

Path parameters

templateIdstring required

Journey id

notificationIdstring required

Notification template id

Request body

statestring

Example request

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

Response

Updated notification template

namestring required
tagsstring[] required
idstring required
state'DRAFT' | 'PUBLISHED' required
createdinteger required
creatorstring required
updatedinteger
updaterstring

Example response

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