Notification Layout
Update a Notification Layout
POST
https://cirro.io/api/v2/notification_layouts/:idParameters
| 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)