Sending Payments
Get quote by ID
Retrieve a quote by its ID. If the quote has been settled, it will include the transaction ID. This allows clients to track the full lifecycle of a payment from quote creation to settlement.
get/quotes/{quoteId}
Path parameters
quoteIdstring required
ID of the quote to retrieve
Response
Quote retrieved successfully
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
}
}