Notification (Topic) Templates
About Notification (Topic) Templates
What are Notification Topic Templates?
The Notification Topic Template is a template for a topic for a notification in Cirro. For instance, if you need to send an email after a gig is created, you should create a new Notification Topic, ‘gig_created,’ and add an HTML template for it.
The Notification (Topic) Template object
Attribute | Type | Description |
---|---|---|
id | string | The unique identifier for the Notification Topic Template. |
object | string | The type of the object, in this case, it's 'notification_template'. |
notification_configuration_id | string | The unique identifier for the associated notification configuration. |
subject | string | The subject of the notification template. |
body | string | The body of the notification template |
Example
{
"id": "1",
"object": "notification_template",
"notification_configuration_id": "1",
"notification_topic_id": "1",
"subject": "New Bug Comment",
"body": "Hello {{recipient_first_name}}, you got {{#pluralize count 'new comments'}}new comment{{/pluralize}}"
}