List subscribed events
The list of subscribed events can be retrieved through the following API call:
- Request
- Response
GET /webhooks
{
"date": "2024-01-15T10:00:00+00:00",
"success": true,
"data": [
{
"id": "1",
"action": "payment_confirmed",
"url": "https://example.com/webhook",
"createdAt": "2024-01-15T09:00:00+00:00"
},
{
"id": "2",
"action": "payment_expired",
"url": "https://example.com/webhook",
"createdAt": "2024-01-15T09:05:00+00:00"
}
]
}
It is also possible to retrieve a specific webhook by its identifier:
- Request
- Response
GET /webhooks/{id}
{
"date": "2024-01-15T10:00:00+00:00",
"success": true,
"data": {
"id": "1",
"action": "payment_confirmed",
"url": "https://example.com/webhook",
"createdAt": "2024-01-15T09:00:00+00:00"
}
}