Notification (Topic) Templates
Update a Notification Template
POST
https://api.cirro.io/v2/notification_templates/:id
Parameters
Parameter | Type | Note | |
---|---|---|---|
subject | string | Subject of an email template | |
body | required | string | Content of the template in handlebar format |
Example
1client = CirroIOV2::Client.new(...)
2client.NotificationTemplate.update(
3 '1',
4 "subject": "New Bug Comment",
5 "body": "Hello {{recipient_first_name}}, you got {{pluralize count, 'new comment', 'new comments'}}"
6)