In this tutorial, we'll step through the API calls required to create a B2B payment.
In a B2B payment, you — a business or institution — are the payment originator and you're paying another business or institutional beneficiary.
While this tutorial focuses on paying a business beneficiary, the process is similar for paying an individual beneficiary. To pay an individual beneficiary, specify their beneficiaryIdentityId in the Create payment step.
There are three main steps for creating a payment where you are the originator:
- Create a quote collection for a proposed payment.
- Create payment to begin the payment process.
- Get a payment to view details about the initiated payment.
You must have the following items to be able to carry out the steps in this tutorial:
- An access token to access secured API endpoints.
- Obtain the beneficiary
identityIDusing the Get identities v2 operation in the API reference.
We'll begin by calling the Create quote collection operation to get a quote for the payment.
Now that we have the quote for the payment, it's time to create the payment using the quoteId.
To do this, we'll call the Create payment operation.
- You must have the
quoteIdof the quote you want to accept from the create a quote response. - You must have the
identityIdof the beneficiary.
Construct the request body as follows:
quoteId: Set this value to thequoteIdyou received in the Create quote collection response.beneficiaryIdentityId: Set this value to the UUID associated with the beneficiary identity.internalId: This example usesInvoice-123.- Note : This is a required sender-created ID to use with filtering in other API operations.
purposeCode: This example usesPAYRto indicate that the purpose of this payment is payroll.sourceOfCash: This example usesSVGSto indicate that the source of cash for this payment is savings.
{
"quoteId": "7ea3399c-1234-5678-8d8f-d320ea406630",
"beneficiaryIdentityId": "22222222-aaaa-2222-bbbb-222222222222",
"internalId": "Invoice-123",
"purposeCode": "PAYR",
"sourceOfCash": "SVGS"
}A success response from the API contains the paymentId and other information you can use to monitor the status of the payment.
{
"paymentId": "7ea3399c-1234-5678-8d8f-d320ea406630",
"initiatedAt": "2025-02-13T23:24:15.770Z",
"expiresAt": "2025-04-14T23:24:15.770Z",
"lastStateUpdatedAt": "2025-02-13T23:24:15.770Z",
"paymentState": "TRANSFERRING",
"originator": {
"internalId": "Invoice-123",
"sourceCountry": "US",
"sourceCurrency": "USD",
"sourceAmount": 10000,
"payin": "FUNDED"
},
"destination": {
"destinationAmount": 203766.88,
"destinationCountry": "MX",
"destinationCurrency": "MXN",
"beneficiaryIdentityId": "22222222-aaaa-2222-bbbb-222222222222",
"beneficiaryIdentityVersion": 1,
"beneficiaryIdentityNickName": "Successful Beneficiary",
"payout": "BANK"
},
"fxRate": 20.4052,
"adjustedExchangeRate": {
"adjustedRate": 20.3422
},
"fees": [
{
"totalFee": 14,
"feeCurrency": "USD"
}
],
"purposeCode": "PAYR",
"transactionDetails": {
"paymentProduct": "PAYMENTS_DIRECT",
"flowType": "B2B",
"thirdPartyPayment": false,
"businessUseCase": "FIAT_TRANSFER"
}
}Use the get payment by payment ID operation to look up the status of a payment.
Use the paymentId path parameter to specify the unique ID of the payment whose status you want to monitor.
- UAT environment with simulated currencyhttps://api.test.ripple.com/v2/payments/{paymentId}
- Production environmenthttps://api.ripple.com/v2/payments/{paymentId}
- curl
- Python
curl -i -X GET \
https://api.test.ripple.com/v2/payments/7ea3399c-1234-5678-8d8f-d320ea406630 \
-H 'Authorization: Bearer <YOUR_JWT_HERE>'Check the paymentState field in the response for the current payment state.
{
"paymentId": "7ea3399c-1234-5678-8d8f-d320ea406630",
"initiatedAt": "2025-02-13T23:24:15.770Z",
"expiresAt": "2025-04-14T23:24:15.770Z",
"lastStateUpdatedAt": "2025-02-13T23:24:15.770Z",
"paymentState": "INITIATED",
"originator": {
"internalId": "Invoice-123",
"sourceCountry": "US",
"sourceCurrency": "USD",
"sourceAmount": 10000,
"payin": "FUNDED"
},
"destination": {
"destinationAmount": 203766.88,
"destinationCountry": "MX",
"destinationCurrency": "MXN",
"beneficiaryIdentityId": "22222222-aaaa-2222-bbbb-222222222222",
"beneficiaryIdentityVersion": 1,
"beneficiaryIdentityNickName": "Successful Beneficiary",
"payout": "BANK"
},
"fxRate": 20.4052,
"fees": [
{
"totalFee": 14,
"feeCurrency": "USD"
}
],
"purposeCode": "PAYR"
}In addition to getting the current state of a payment, you can also use the get state transitions operation to see when the payment transitioned between states.
- UAT environment with simulated currencyhttps://api.test.ripple.com/v2/payments/{paymentId}/states
- Production environmenthttps://api.ripple.com/v2/payments/{paymentId}/states
- curl
- Python
curl -i -X GET \
https://api.test.ripple.com/v2/payments/7ea3399c-1234-5678-8d8f-d320ea406630/states \
-H 'Authorization: Bearer <YOUR_JWT_HERE>'Examine the response to view the state transitions.
{
"stateTransitions": [
{
"updatedFrom": "QUOTED",
"updatedTo": "INITIATED",
"updatedAt": "2025-02-21T15:32:34.557Z"
},
{
"updatedFrom": "INITIATED",
"updatedTo": "VALIDATING",
"updatedAt": "2025-02-21T15:32:38.380Z"
},
{
"updatedFrom": "VALIDATING",
"updatedTo": "TRANSFERRING",
"updatedAt": "2025-02-21T15:32:49.552Z"
},
{
"updatedFrom": "TRANSFERRING",
"updatedTo": "COMPLETED",
"updatedAt": "2025-02-21T15:34:54.496Z"
}
]
}