Notification (Topic) Templates
Create a Notification (Topic) Template
POST
https://api.cirro.io/v2/notification_templates
Attributes
Parameter | Type | Note | |
---|---|---|---|
notification_configuration_id | required | string | ID of the associated notification configuration |
notification_topic_id | required | string | ID of the associated notification topic |
subject | string | Subject of an email template | |
body | required | string | Content 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)