v1
latestOpenAPI 3.1.02026-07-2483219318.4 KBPayments
Get one-off payment
get/v1/one-off-payments/{paymentId}
Path parameters
paymentIdstring required
Example:one_off_payment_c01234567890123456789012345
Response
Success
Example response
{
"_id": "one_off_payment_c01234567890123456789012345",
"status": "SUBMITTED",
"status_reason": {
"code": "PENDING",
"message": "The payment was submitted to the bank"
},
"payee": {
"name": "John Smith",
"account_number": "12-3456-7890123-00"
},
"payer": {
"name": "Jane Smith",
"account_number": "12-3456-7890123-10"
},
"amount": 12.34,
"redirect_uri": "https://myapp.com/payments/complete",
"webhook_uri": "https://myapp.com/payments/webhooks"
}