Notification Layout
About Notification Layout
What are Notification Layouts?
Notification Layout represents the layout for the notifications in Cirro.
The Notification Layouts object
Notification Layout Attributes
Parameter | Type | Note |
---|---|---|
name | string | Name of the layout |
templates | array | List of notification layout templates |
Notification Layout Template Attributes
Parameter | Type | Note |
---|---|---|
notification_configuration_id | string | ID of notification configuration, which determines deliver method, locale and kind |
body | string | Content of the template in handlebar format |
Example
{
"id": "1",
"object": "notification_layout",
"name": "tester_layout",
"templates": {
"object": "list",
"data": [
{
"id": "1",
"notification_configuration_id": "1",
"notification_layout_id": "1",
"body": "<p>Hello {{recipient_first_name}},</p>{{yield content}}<footer></footer>"
}
]
}
}