Notification Layout
Create a Notification Layout
POST
https://api.cirro.io/v2/notification_layouts
Parameters
Parameter | Type | Note | |
---|---|---|---|
name | required | string | Name of the layout |
templates | array | List of notification layout templates |
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(
3 {
4 "name": "tester_layout",
5 "templates": [
6 {
7 "notification_configuration_id": "1",
8 "body": "<p>Hello {{recipient_first_name}},</p>{{yield content}}<footer></footer>"
9 }
10 ]
11 }
12)