Users

Create or Update Notification Preferences

POST https://api.cirro.io/v2/users/:id/notification_preferences

Parameters

ParameterTypeNote
localerequiredstringIn which language does the user want to receive notifications
topics[]array of topics (See below)Preferences of a user per notification topic

Each object in the topics array should contain:

ParameterTypeNote
idrequiredstringID of the notification topic
preferencesrequiredarray of preferences (See below)

The preferences object should contain:

ParameterTypeNote
emailrequiredenumOne of immediately, digest_hourly, digest_daily, never for email setup
microsoft_teamsenumOne of immediately, digest_hourly, digest_daily, never for Microsoft Teams setup. Default is never.

Example

1client = CirroIOV2::Client.new(...)
2params = {
3  "locale": "de",
4  "topics": [
5    {
6      "id": "1",
7      "preferences": {
8        "email": "immediately"
9      }
10    }
11  ]
12}
13client.User.notification_preferences(1, params)
Previous
Get Notification Preferences of a User