Skip to main content
GET
/
v1
/
webhooks
/
deliveries
/
{id}
Retrieves a webhook delivery
curl --request GET \
  --url https://api.rootly.com/v1/webhooks/deliveries/{id} \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "id": "<string>",
    "attributes": {
      "endpoint_id": "<string>",
      "payload": "<string>",
      "delivered_at": "<string>",
      "created_at": "<string>",
      "updated_at": "<string>"
    }
  },
  "included": [
    {
      "id": "<string>",
      "type": "<string>",
      "attributes": {},
      "relationships": {}
    }
  ]
}

Authorizations

Authorization
string
header
required

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

Path Parameters

id
string
required

Response

webhooks_delivery found

data
object
required
included
object[]