VUZDevelopers

Get recent failed/declined checkouts across payment pages

GET
/analytics/payment-pages/failures

For the "high attempt→paid drop" insight and general merchant visibility.

X-Api-Key<token>

Business API key, e.g. vuz_ab12cdef... Created via Settings → Integrations → API Keys. Unlike partner keys, a public API key's STRING does not encode its environment — isolation instead comes from a completely separate sandbox database: a key minted on the Sandbox server (above) only ever reads/writes sandbox data and can never see or affect production, regardless of what the key looks like.

In: header

Query Parameters

range?string

Time range for the summary/trend

Default"last30days"

Value in

  • "last7days"
  • "last30days"
  • "last3months"
  • "ytd"
  • "lastyear"
  • "custom"
startDate?string

Start date for custom range (ISO date string)

endDate?string

End date for custom range (ISO date string)

limit?number
Range1 <= value <= 100
Default20
offset?number
Range0 <= value
Default0

Response Body

application/json

curl -X GET "https://example.com/analytics/payment-pages/failures"
{  "items": [    {      "checkoutId": "string",      "pageId": "string",      "pageName": "string",      "amount": 0,      "currency": "ILS",      "lastFailureCode": "string",      "failedAttempts": 0,      "customerName": "string",      "customerEmail": "string",      "createdAt": "2019-08-24T14:15:22Z",      "status": "pending"    }  ],  "total": 0}