v1
latestOpenAPI 3.1.02026-07-2478315484.9 KBPayment Links
Get Payment Link Usage
Returns the details of a single payment link usage, including its current status, the identifiers collected from the payer during the payment flow, and the resulting payment reference once the bank has processed the payment.
The payment_id and payment_status fields are populated asynchronously - they will be null immediately after usage creation and will be set once the payment has been processed by the bank.
get/payment-links/v1/{payment_link_id}/usages/{usage_id}
Path parameters
payment_link_idstring uuid required
Example:d290f1ee-6c54-4b01-90e6-d701748f0851
The unique identifier of the payment link.
usage_idstring uuid required
Example:3fa85f64-5717-4562-b3fc-2c963f66afa6
The unique identifier of the payment link usage.
Response
OK - Payment link usage found and returned.
Example response
{
"usage_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"payment_link_id": "d290f1ee-6c54-4b01-90e6-d701748f0851",
"usage_status": "PAYMENT_CREATED",
"customer_id": "a3bb189e-8bf9-3888-9912-ace4e6543002",
"payment_id": "7c9e6679-7425-40de-944b-e07fc1f90ae7",
"payment_status": "PENDING",
"identifiers": [
{
"display_label": "Email address",
"value": "payer@example.com"
}
]
}