Notification Layout
Create a Template for a Layout
POST
https://api.cirro.io/v2/notification_layouts/:id/notification_layout_templates
Parameters
Parameter | Type | Note | |
---|---|---|---|
notification_configuration_id | required | string | ID of notification configuration, which determines deliver method, locale and kind |
body | required | string | Content of the template in handlebar format |
Example
1client = CirroIOV2::Client.new(...)
2client.NotificationLayout.create_template(
3 "1",
4 {
5 "notification_configuration_id": "1",
6 "body": "<p>Hello {{recipient_first_name}},</p>{{yield content}}<footer></footer>"
7 }
8)