GET
/
webhooks
/
{webhook_id}
/
events
curl --request GET \
  --url https://api.godiligent.ai/webhooks/{webhook_id}/events \
  --header 'X-API-KEY: <api-key>'
[
  {
    "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
    "webhook_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
    "event_type": "<string>",
    "timestamp": "2023-11-07T05:31:56Z",
    "status_code": 204,
    "request": {
      "headers": {},
      "payload": {}
    },
    "response": {
      "headers": {},
      "body": {}
    }
  }
]

Authorizations

X-API-KEY
string
header
required

Path Parameters

webhook_id
string
required

Webhook ID to filter deliveries.

Response

200 - application/json

List of recent webhook delivery events.

The response is of type object[].