get
https://fin-api.digetpay.com/v1/merchant/account/webhooks
Recent Requests
Log in to see full request history
| Time | Status | User Agent | |
|---|---|---|---|
Retrieving recent requests… | |||
Loading…
List registered webhook endpoints. Requires Merchant Portal Bearer token.
Flow
sequenceDiagram
autonumber
participant A as Portal Admin
participant D as DigetPay Portal API
A->>D: GET /merchant/account/webhooks
D-->>A: 200 { webhooks[] }
Responses
{
"success": {
"status": 200,
"body": {
"webhooks": [
{
"id": "wh_abc123",
"url": "https://yourstore.com/webhooks/digetpay",
"active": true
}
]
}
}
}{
"failed_unauthorized": {
"status": 401,
"body": {
"statusCode": 401,
"message": "Unauthorized",
"error": "Unauthorized"
}
}
}