GET
/
api
/
v1
/
csp
/
webhook
/
{webhook_id}
/
errors
List Delivery Errors
curl --request GET \
  --url https://sandbox.paylias.xyz/gateway/api/v1/csp/webhook/{webhook_id}/errors \
  --header 'Authorization: Bearer <token>' \
  --header 'x-partner-id: <x-partner-id>'
{
  "data": {
    "count": 1,
    "delivery_errors": [
      {
        "error_category": 1,
        "error_message": "webhook did not yield status 200, status: 404",
        "occurred_on": {
          "seconds": 1743273393
        },
        "token": "de_cvk3rcc20or8r9g84t00",
        "webhook_id": "whk_cvk2qqs20or7iffvl200"
      }
    ]
  },
  "ok": true
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Headers

x-partner-id
string
default:""
required

The Partner ID header used for authorization

Path Parameters

webhook_id
string
required

The unique identifier for the webhook

Example:

"whk_cjf0qivsemvkg2on8f9g"

Query Parameters

limit
string
Example:

"10"

page
string
Example:

"1"

Response

200
application/json

Response when retrieving a list of delivery errors against a webhook subscription

Standard response structure for successful operations