HomeGuidesAPI ReferenceChangelog
Log InChangelog
Guides

referenceType and reference

referenceType and reference

The Status and Cancel endpoints require two path parameters that identify the transaction:

GET  /v1/wallet/status/{referenceType}/{reference}
POST /v1/wallet/cancel/{referenceType}/{reference}

reference

reference is the PSP-issued transaction identifier returned from the Wallet Sale / Hybrid Sale.
The PSP uses this value to locate the correct transaction for status lookup or cancellation.

referenceType

referenceType tells the PSP what kind of reference you're providing.

  • Current required value: pspReference
  • Designed for future extension (e.g., other reference types).

Example Usage

GET  /v1/wallet/status/pspReference/<pspReference>
POST /v1/wallet/cancel/pspReference/<pspReference>