Docs
Webhooks

Get a webhook and its recent deliveries

GET/webhooks/{id}
AuthorizationBearer <token>

Enter your API key with the bc_ prefix

In: header

Path Parameters

id*string

Response Body

application/json

curl -X GET "https://example.com/webhooks/string"
{  "data": {    "createdAt": "2019-08-24T14:15:22Z",    "events": [      "string"    ],    "id": "string",    "isActive": true,    "recentDeliveries": [      {}    ],    "secret": "string",    "updatedAt": "2019-08-24T14:15:22Z",    "url": "http://example.com"  },  "success": true}