GET
/
webhooks
/
{webhookID}
/
logs
View logs
curl --request GET \
  --url https://api.bridge.xyz/v0/webhooks/{webhookID}/logs \
  --header 'Api-Key: <api-key>'
{
"count": 1,
"data": [
{
"data": {
"type": "array",
"minItems": 0,
"items": [
{
"status": 200,
"event_id": "wh_event_id_123",
"response_body": "{\"message\":\"OK\"}",
"created_at": "2024-01-01T00:00:00.000Z"
},
{
"status": 200,
"event_id": "wh_event_id_456",
"response_body": "{\"message\":\"OK\"}",
"created_at": "2024-01-01T00:00:00.000Z"
}
]
}
}
]
}

Authorizations

Api-Key
string
header
required

Path Parameters

webhookID
string
required

A UUID that uniquely identifies a resource

Required string length: 1 - 42

Response

200
application/json

Recent delivery looks for the webhook (the returned list is empty if none found)

The response is of type object.