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
Example request
{
"notification": {
"content": {
"elements": [
{
"channel": "email"
}
]
}
}
}Response
Updated notification template
Example response
{
"content": {
"elements": [
{
"channel": "email"
}
]
}
}