List webhook endpoints
List the webhook endpoints registered under your account. Signing secrets are never returned.
Responses
- application/json
- application/json
- application/json
Request Example for get/api/v1/webhooks/endpoints
curl https://api.bettermoney.com/api/v1/webhooks/endpoints
{
"endpoints": [
{
"id": "123e4567-e89b-12d3-a456-426614174000",
"accountId": "123e4567-e89b-12d3-a456-426614174000",
"url": "https://example.com",
"description": null,
"status": "ENABLED",
"eventTypes": [
"payment_order"
],
"consecutiveFailures": -9007199254740991,
"createdAt": "2026-09-08T20:57:50.014Z",
"updatedAt": "2026-09-08T20:57:50.014Z",
"disabledAt": null,
"deletedAt": null
}
]
}