Notification Configurations

About Notification Configurations

What are Notification Configurations?

Notification Configurations allows us to configure notifications settings on Cirro.

The Notification Configuration object

Notification Configuration Attributes

AttributeTypeDescription
objectstringThe type of the object inside the configurations list, it's 'list'.
idstringThe unique identifier for the Notification Configuration.
objectstringThe type of the object, in this case, it's 'notification_configuration'.
deliver_bystringThe method to deliver the notification, for example 'email'.
formatstringThe format of the notification, for example 'html' or 'text'.
kindstringThe kind of the notification, for example 'standalone' or 'digest'.
localestringThe locale for the notification configuration.

Example

{
  "object": "list",
  "url": "/notification_configurations",
  "has_more": false,
  "data": [
    {
      "id": "1",
      "object": "notification_configuration",
      "deliver_by": "email",
      "format": "html",
      "kind": "digest",
      "locale": "de"
    },
    {
      "id": "2",
      "object": "notification_configuration",
      "deliver_by": "email",
      "format": "text",
      "kind": "digest",
      "locale": "de"
    }
  ]
}
Previous
Get Notification Locale