Skip to main content
PATCH
/
notifications
/
events
/
{id}
Update Event Delivery Status
curl --request PATCH \
  --url https://hub.griff.services/notifications/events/{id} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "channelKey": "<string>",
  "status": {
    "status": "delivered",
    "attemptedAt": "2023-11-07T05:31:56Z",
    "responseCode": 123,
    "messageId": "<string>",
    "error": "<string>",
    "channelMeta": {
      "channelType": "slack",
      "thread_ts": "<string>"
    }
  }
}
'
{
  "data": {
    "id": "<string>",
    "ruleId": "<string>",
    "triggerReason": "<string>",
    "channelsNotified": {},
    "deliveryStatus": {},
    "createdAt": "2023-11-07T05:31:56Z",
    "runId": "<string>"
  }
}

Authorizations

Authorization
string
header
required

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

Path Parameters

id
string
required

Body

application/json
channelKey
string
required
status
object
required

Response

Default Response

data
object
required