Notification Topics
Update a Notification Topic
POST
https://api.cirro.io/v2/notification_topics/:id
Parameters
Parameter | Type | Note | |
---|---|---|---|
name | string | Must be "snakecase" (lowercase letters and underscores only) | |
notification_layout_id | string | Choose the notification layout for this channel | |
preferences | object | Preferences for receiving notifications from the channel |
Preferences Parameters
Parameter | Type | Note | |
---|---|---|---|
email | required | enum | One of the given enum values for email setup: immediately , digest_hourly , digest_daily , or never |
microsoft_teams | enum | One of the given enum values for EPAM teams setup: immediately , digest_hourly , digest_daily , or never . Default is never |
Example
1client = CirroIOV2::Client.new(...)
2client.NotificationTopic.update(
3 "1",
4 {
5 "name": "new_gig_invitation",
6 "notification_layout_id": "1",
7 "preferences": {
8 "email": "immediately",
9 "microsoft_teams": "never"
10 }
11 }
12)