Skip to main content
GET
/
webhooks
List/Search webhooks
curl --request GET \
  --url https://api.deliverykey.com/v1/webhooks \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "endpoint": "http(s) endpoint to receive the events",
      "id": "b5b118bc-7e81-4c29-9f10-98387b94b5ce",
      "enabled": true,
      "events": [
        "email.clicked",
        "email.delivered",
        "email.opened"
      ],
      "created_at": "2022-10-12T18:57:23.000000Z"
    }
  ]
}

Authorizations

Authorization
string
header
required

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

Response

200 - application/json

OK

data
object[]