Notification Locales

About Notification Locales

What are Notification Locales?

Notification Locale allows us to set up the preferred languages for notifications from Cirro.

The Notification Locale object

Notification Locale Attributes

AttributeTypeDescription
idstringThe unique identifier for the Notification Locale.
objectstringThe type of the object, in this case, it's 'notification_locale'.
defaultbooleanIndicates whether this locale is the default one.
localestringThe locale code like 'de', 'en', etc.
configurationsobjectAn object containing a list of notification configurations.

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

{
  "id": "1",
  "object": "notification_locale",
  "default": false,
  "locale": "de",
  "configurations": {
    "object": "list"
    "data": [
      {
        "id": "1",
        "object": "notification_configuration",
        "deliver_by": "email",
        "format": "html",
        "kind": "standalone",
        "locale": "de"
      },
      {
        "id": "2",
        "object": "notification_configuration",
        "deliver_by": "email",
        "format": "text",
        "kind": "standalone",
        "locale": "de"
      },
      {
        "id": "3",
        "object": "notification_configuration",
        "deliver_by": "email",
        "format": "html",
        "kind": "digest",
        "locale": "de"
      },
      {
        "id": "3",
        "object": "notification_configuration",
        "deliver_by": "email",
        "format": "text",
        "kind": "digest",
        "locale": "de"
      }
    ]
  }
}
Previous
Create a Gig Time Activity