Notification (Topic) Templates

Update a Notification Template

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

Parameters

ParameterTypeNote
subjectstringSubject of an email template
bodyrequiredstringContent 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)
Previous
Create a Notification Template