Skip to main content
GET
/
notifications
/
events
List Notification Events
curl --request GET \
  --url https://hub.griff.services/notifications/events \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "id": "<string>",
      "ruleId": "<string>",
      "triggerReason": "<string>",
      "channelsNotified": {},
      "deliveryStatus": {},
      "createdAt": "2023-11-07T05:31:56Z",
      "runId": "<string>"
    }
  ],
  "total": 123,
  "limit": 123,
  "offset": 123
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

ruleId
string
limit
number
Required range: 1 <= x <= 100
offset
number
Required range: x >= 0

Response

Default Response

data
object[]
required
total
number
required
limit
number
required
offset
number
required