delete
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…
Remove a webhook endpoint. Requires Merchant Portal Bearer token.
Flow
sequenceDiagram
autonumber
participant A as Portal Admin
participant D as DigetPay Portal API
A->>D: DELETE /merchant/account/webhooks/{webhookId}
D-->>A: 204 No Content
Responses
{
"success": {
"status": 204,
"body": null
}
}{
"failed_not_found": {
"status": 404,
"body": {
"statusCode": 404,
"message": "Webhook not found",
"error": "Not Found"
}
}
}{
"failed_unauthorized": {
"status": 401,
"body": {
"statusCode": 401,
"message": "Unauthorized",
"error": "Unauthorized"
}
}
}