Notification Layout
Update a Notification Layout
POST
https://api.cirro.io/v2/notification_layouts/:id
Parameters
Parameter | Type | Note | |
---|---|---|---|
name | required | string | Name of the layout |
Example
1client = CirroIOV2::Client.new(...)
2client.NotificationLayout.update(
3 "1",
4 {
5 "name": "tester_layout",
6 }
7)