Notification Topics

Update a Notification Topic

POST https://api.cirro.io/v2/notification_topics/:id

Parameters

ParameterTypeNote
namestringMust be "snakecase" (lowercase letters and underscores only)
notification_layout_idstringChoose the notification layout for this channel
preferencesobjectPreferences for receiving notifications from the channel

Preferences Parameters

ParameterTypeNote
emailrequiredenumOne of the given enum values for email setup: immediately, digest_hourly, digest_daily, or never
microsoft_teamsenumOne 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)
Previous
Get a Notification Topic