Retry an incomplete payment
In the case where a customer is debited but the Lightning payment fails to complete, integrators can retry the payment using this endpoint.
Payments retried with this endpoint will debit from the sender and deliver to the recipient the same amount as the original quote. As UMA as a service does not persist customer PII, retries need to start with a lookup request to retrieve the original quote's recipient counter party data requirements then pass that sender information in the request body. Before calling this endpoint, you should reach out to the UMA as a service team to investigate the underlying issue. As part of resolution, they'll update the transaction to the appropriate state. The quote / transaction to retry must be in a FAILED or REFUNDED state.
Path parameters
ID of the quote to retry
Request body
Example request
{
"lookupId": "Lookup:019542f5-b3e7-1d02-0000-000000000009",
"senderUserInfo": {
"FULL_NAME": "Jane Receiver",
"NATIONALITY": "FR"
}
}Response
Quote created successfully. The response includes payment instructions that the client can use to execute the payment through their banking provider.
Example response
{
"quoteId": "Quote:019542f5-b3e7-1d02-0000-000000000006",
"sendingCurrency": {
"code": "USD",
"name": "United States Dollar",
"symbol": "$",
"decimals": 2
},
"receivingCurrency": {
"code": "USD",
"name": "United States Dollar",
"symbol": "$",
"decimals": 2
},
"totalSendingAmount": 123010,
"totalReceivingAmount": 1000,
"expiresAt": "2023-09-01T14:30:00Z",
"feesIncluded": 10,
"counterpartyInformation": {
"FULL_NAME": "Jane Receiver",
"BIRTH_DATE": "1990-01-01",
"NATIONALITY": "FR"
},
"paymentInstructions": {
"reference": "UMA-Q12345-REF",
"instructionsNotes": "Please ensure the reference code is included in the payment memo/description field",
"bankAccountInfo": {
"clabeNumber": "123456789012345678",
"bankName": "BBVA Mexico",
"accountHolderName": "John Doe"
}
},
"status": "PENDING",
"transactionId": "Transaction:019542f5-b3e7-1d02-0000-000000000005",
"originalQuoteId": "Quote:019542f5-b3e7-1d02-0000-000000000001",
"rateDetails": {
"counterpartyMultiplier": 1.08,
"counterpartyFixedFee": 10,
"umaaasMultiplier": 0.925,
"umaaasFixedFee": 10,
"umaaasVariableFeeRate": 0.003,
"umaaasVariableFeeAmount": 30
}
}