Skip to Content
CloudBlueprint EditorAlerts

Alerts

Overview

The PRIZM platform can automatically send notifications to users or external systems when a predefined alert is triggered.

Supported Alert Methods

  • Email: Sends a formatted email to specified recipients.
  • SMS: Sends a text message to a mobile number.
  • HTTP Webhook: Sends a POST request to a specified URL, allowing for integration with third-party services like Slack, PagerDuty, or custom applications.

Configuring HTTP Webhook Alerts

To integrate PRIZM alerts with an external system, you can configure an HTTP webhook. This is done by defining the target endpoint’s url and any necessary headers.

Configuration Parameters

ParameterTypeRequiredDescription
urlStringYesThe destination URL where the POST request will be sent.
headersObjectNoA key-value map of custom HTTP headers to include in the request, such as for authentication (Authorization).

Payload Specification

When an alert is triggered, PRIZM sends a POST request to the configured url with a Content-Type: application/json header and the following JSON body:

FieldTypeDescription
deviceIdStringThe unique identifier of the device that triggered the alert.
textStringThe descriptive message of the alert.
Last updated on