PagerDuty Elixir v0.0.1 PagerDuty.Notification

When an incident is triggered or escalated, it creates a notification.

Notifications are messages containing the details of the incident, and can be sent through SMS, email, phone calls, and push notifications.

Notifications cannot be created directly through the API; they are a result of other actions.

The API provides read-only access to the notifications generated by PagerDuty.

Read more about notifications in the PagerDuty Knowledge Base.

Attributes

  • @id:
  • @type: The type of notification. valid options are:

    • sms_notification
    • email_notification
    • phone_notification
    • push_notification
  • @started_at: The time at which the notification was sent
  • @address: The address where the notification was sent. This will be null for notification type push_notification.
  • @user: The user the notification was sent to.

Summary

Types

t()
t() :: %PagerDuty.Notification{address: String.t, id: String.t, started_at: String.t, type: String.t, user: PagerDuty.User}