Notification (Topic) Templates

Create a Notification (Topic) Template

POST https://api.cirro.io/v2/notification_templates

Attributes

ParameterTypeNote
notification_configuration_idrequiredstringID of the associated notification configuration
notification_topic_idrequiredstringID of the associated notification topic
subjectstringSubject of an email template
bodyrequiredstringContent of the template in handlebar format

Example

1client = CirroIOV2::Client.new(...)
2client.NotificationTemplate.create(
3  "notification_configuration_id": "1",
4  "notification_topic_id": "1",
5  "subject": "New Bug Comment",
6  "body": "Hello {{recipient_first_name}}, you got {{#pluralize count, 'new comments'}}new comment{{/pluralize}}"
7)
Previous
Get Notification Templates