Notification Topics

About Notification Topics

What are Notification Topics?

The Notification Topic represents the topic for a notification in Cirro. For instance, if you need to send an email after a gig is created, you should create a new Notification Topic, ‘gig_created,’ and add an HTML template for it.

The Notification Topic object

AttributeTypeDescription
idstringThe unique identifier for the Notification Topic.
objectstringThe type of the object, in this case, it's 'notification_topic'.
namestringThe name of a topic
notification_layout_idstringThe unique identifier for the associated Notification Layout.
preferenceshashThe hash of preferences.

Example

{
  "id": "1",
  "object": "notification_topic",
  "name": "new_gig_invitation",
  "notification_layout_id": "1",
  "preferences": {
    "email": "immediately",
    "microsoft_teams": "never"
  }
}
Previous
Delete Notification Layout Template