Notification Broadcasts

Create a Notification Broadcast

POST https://api.cirro.io/v2/notification_broadcasts

Parameters

ParameterTypeNote
payloadrequiredobjectKey value pairs to pass to the channel templates in order to render them.
recipientsrequiredobjectRecipients of the broadcast. Can be defined with either user_ids or filter_query.
notification_topic_idrequiredstringAssociate the broadcast to a notification topic
templatesrequiredarrayAssociated templates of a broadcast

Recipients Parameters

ParameterTypeNote
user_idsarrayOne of the 2 ways to specify the recipient(s) of the notification.
filter_queryobjectOne of the 2 ways to specify the recipient(s) of the notification.

Templates Parameters

ParameterTypeNote
notification_configuration_idrequiredstringID of notification configuration which determines deliver method, kind, and format.
subjectstringSubject of email template.
bodyrequiredstringContent of template in liquid format.

Example

1client = CirroIOV2::Client.new(...)
2client.NotificationBroadcast.create(
3  payload: {
4    foo: 'bar',
5    key: 'value'
6  },
7  recipients: {
8    user_ids: [1, 2, 3]
9  },
10  notification_topic_id: 1
11)
Previous
About Notification Broadcast