Notification Broadcasts

About Notification Broadcast

What are notification broadcasts?

Notification Broadcast allows Cirro to send emails to several users as a broadcast.

The notification broadcast object

Attributes

AttributeTypeDescription
idstringThe unique identifier for the Notification Broadcast.
objectstringThe type of the object, in this case, it's 'notification_broadcast'.
payloadstringThe payload of a broadcast.
recipientsarrayRecipients of the broadcast.
notification_topic_idstringThe associated notification topic.
templatesarrayThe associated notification templates.

Example

{
  "id": "1",
  "object": "notification_broadcast",
  "payload": {
    "key": "value"
  },
  "recipients": {
    "user_ids": [
      "1",
      "2"
    ]
  },
  "notification_topic_id": "1",
  "templates": [
    {
      "notification_configuration_id": "1",
      "subject": "New test invitation",
      "body": "Hello {{firstname}}, this is a priority test for {{customer_name}}..."
    }
  ]
}
Previous
Get Notification Topic Preferences