Process payments on a full account
Last updated: November 19, 2025
After your sub-entity has passed onboarding checks and has payment capabilities enabled, you can start processing payments on their behalf.
The following payment methods are available in the United Kingdom (UK) and European Economic Area (EEA) if you're on the Full account type:
- Visa
- Mastercard
- Apple Pay
- Cartes Bancaires
- Google Pay
If your customers are buying from only one sub-entity at a time, you can request a payment for a single sub-entity.
If you want to charge a commission from the sub-entity for facilitating the transaction on your platform, there are three ways to apply commission:
- Fixed commission amount in minor currency units
- Variable commission, as a percentage of the payment
- Compound commission which is a fixed commission, with an additional variable commission as a percentage of the payment amount
If you do not need to use Checkout.com to charge a commission, then omit the commission from your amount_allocations object. You can transfer funds from your sub-entities at a later stage.
Call the Request a payment or payout endpoint. In the request body, provide the following:
source– The source of payment.amountcurrencydescriptionprocessing_channel_idamount_allocations.id– The sub-entity ID to link the payment with the sub-entityamount_allocations.amount– The amount to be credited to your sub-entity's currency account, in minor currency unit.amount_allocations.commission.amount– Fixed amount of commission in minor currency unit, if applicableamount_allocation.commission.percentage– The percentage of commission, if applicable
In the following example, the request charges a fixed commission of 2 USD:
post
https://api.checkout.com/payments
1{2"source": {3"type": "token",4"token": "tok_4gzeau5o2uqubbk6fufs3m7p54"5},6"amount": 1000,7"currency": "USD",8"reference": "ORD-5023-4E89",9"description": "Purchase basket",10"processing_channel_id": "pc_hpswyyx23geezflc2ocz3exn4y",11"amount_allocations": [12{13"id": "ent_125673kjsdhfksjdhf",14"amount": 1000,15"commission": {16"amount": 20017}18}19]20}
To manage the funds flow between you and your sub-entity, include the amount_allocations object in the capture and refund requests. If you do not include it, we apply the following default logic.
For captures, the amount is credited to the sub-entity's currency account balance and the commission credited to your platform.
For refunds, the amount is debited from the sub-entity’s currency account balance and the commission debited from your platform.
If you include the amount_allocations object in the refund request, it debits funds from the sub-entity specified. If you include a commission in the object, it debits this amount from your platform’s balance.
The split information included in an authorization request is overwritten if split information is also supplied in any subsequent requests. For example, if split information is submitted in both the authorization and a capture request, the information in the capture request determines how the funds are split.
For full captures and refunds without the amount_allocations object, we always apply the amount_allocations object provided in the original authorization request, including the commission.
For partial captures without the amount_allocations object, we apply the new amount specified in the partial capture to the sub-entity ID specified in the original request. The amount and commission of the original request are not considered. For example:
- You request an authorization for 100 USD on behalf of your sub-entity, and provide their
idin theamount_allocationsobject. - You submit a partial capture for 50 USD, and omit the
amount_allocationsobject from your request. - 50 USD is captured to your platform's account. The
idandamountfields in theamount_allocationsobject are automatically set to the sub-entity ID and capture amount, respectively.
For partial refunds without the amount_allocations object, we apply the new amount specified in the partial refund to the sub-entity ID specified in the original capture request. We will always ignore the amount and commission of the original request. For example:
- You request an authorization for 100 USD on behalf of your sub-entity, and provide their
idin theamount_allocationsobject. - You request a capture for 100 USD with the same
amount_allocationsobject as in the authorization. - You submit a partial refund for 50 USD, and omit the
amount_allocationsobject from your request. - 50 USD isa debited from your platform's account. The id and amount fields in the
amount_allocationsobject are automatically set to the sub-entity ID and refund amount, respectively.
Information
This is only available to marketplaces.
When a customer buys items from multiple sub-entities on your platform, request a single payment from the customer and then split that amount appropriately across different sub-entities. You may also want to take a commission from each sub-entity for facilitating the transaction on your platform.
For example, consider that a customer makes a purchase of 100 USD and the payment is split as:
- Sub-entity A: 30 USD for a shirt
- Sub-entity B: 50 USD for trainers
- Sub-entity C: 20 USD for socks
If you charge a commission, it is applied to each split, and cannot exceed the split amount.
To request a split payment, call the Request a payment or payout endpoint. In the request body, provide the following:
source– The source of payment.amountcurrencydescriptionprocessing_channel_idamount_allocations.id– The sub-entity ID to link the payment with the sub-entity.amount_allocations.amount– The split amount to be credited to your sub-entity's currency account, in minor currency unit. The sum of all split amounts must be equal to theamountvalue.amount_allocations.commission.amount– Fixed amount of commission in minor currency unit, if applicable.amount_allocation.commission.percentage– The percentage of commission, if applicable
In the following example request, we show three ways you can split the payment and specify commission for your platform:
- Fixed commission amount – Charge the sub-entity a fixed commission amount of 2 USD. This sub-entity would receive 28 USD, and you would receive 2 USD in your currency account.
- Variable commission – Charge the sub-entity a fee of 1.5%. This sub-entity would have 1.5% of 50 USD deducted, so would receive 49.25 USD. You would receive 0.75 USD in your currency account.
- Compound commission – Charge the sub-entity a fee of 1.5%, plus a fixed fee of 2 USD. This sub-entity would have 1.5% of 20 USD deducted, plus another 2 USD deducted, so would receive 17.70 USD. You would receive 2.30 USD in your currency account.
post
https://api.checkout.com/payments
1{2"source": {3"type": "token",4"token": "tok_4gzeau5o2uqubbk6fufs3m7p54"5},6"amount": 10000,7"currency": "USD",8"reference": "ORD-5023-4E89",9"description": "Multi-seller basket",10"processing_channel_id": "pc_hpswyyx23geezflc2ocz3exn4y",11"amount_allocations": [12{13"id": "ent_pj6fv2w2wchfedchjjyobb4bni",14"amount": 3000,15"reference": "SALE-7627-8389",16"commission": {17"amount": 20018}19},20{21"id": "ent_kjx3tob2sxtl44wb7q7alwdu2m",22"amount": 5000,23"reference": "SALE-1729-3782",24"commission": {25"percentage": 1.526}27},28{29"id": "ent_kklowryxmczwyoqe4z7yvcbwvy",30"amount": 2000,31"reference": "SALE-2127-9735",32"commission": {33"amount": 200,34"percentage": 1.535}36}37]38}
If successful, the payment is automatically associated with the correct sub-entity.
The sub-entity's funds are held in their currency account. Your commissions are held in your currency account. We charge you, the platform, all of the fees for processing payments.
To capture or refund a payment that has been split between multiple sub-entities, provide the split information in the request. You can request refunds for multiple sub-entities within a single capture or refund request.
When you include the amount_allocations object in the refund request, funds are debited from the sub-entity specified. If you include a commission in the object, funds are debited from your platform’s balance.
The refund request applies the original split and debits the amount specified in the commission from your balance by default. You can include split instructions in your refund request to overwrite this.
For example, consider the customer requests a full refund of all the items purchased in the 100 USD transaction. With default logic, this will be:
- Sub-entity A: 28 USD, Platform: 2 USD
- Sub-entity B: 49.25 USD, Platform: 0.75 USD
- Sub-entity C: 17.70 USD, Platform: 2.30 USD
1{2"source": {3"type": "token",4"token": "tok_4gzeau5o2uqubbk6fufs3m7p54"5},6"amount": 10000,7"currency": "GBP",8"reference": "ORD-5023-4E89",9"description": "Multi-seller basket",10"processing_channel_id": "pc_hpswyyx23geezflc2ocz3exn4y",11"amount_allocations": [12{13"id": "ent_pj6fv2w2wchfedchjjyobb4bni",14"amount": 3000,15"reference": "SALE-7627-8389",16"commission": {17"amount": 20018}19},20{21"id": "ent_kjx3tob2sxtl44wb7q7alwdu2m",22"amount": 5000,23"reference": "SALE-1729-3782",24"commission": {25"percentage": 1.526}27},28{29"id": "ent_kklowryxmczwyoqe4z7yvcbwvy",30"amount": 2000,31"reference": "SALE-2127-9735",32"commission": {33"amount": 200,34"percentage": 1.535}36}37]38}
To change how the refund is debited between you and the sub-entities, include a new split instruction.
The following example shows an amount_allocations object that specifies no commission. This funds the entire refund split amounts from the sub-entities’ balances.
1{2"id": "pay_kwrzpz644g6uxmdkpe5u6ruecm",3"amount_allocations": [4{5"id": "ent_pj6fv2w2wchfedchjjyobb4bni",6"amount": 30007},8{9"id": "ent_kjx3tob2sxtl44wb7q7alwdu2m",10"amount": 5000,11"commission": {12"amount": 013}14},15{16"id": "ent_kklowryxmczwyoqe4z7yvcbwvy",17"amount": 200018}19]20}
To partially refund a split payment, you must always include the amount_allocations object. This specifies which sub-entity or sub-entities the refund is related to.
The refund is applied in the same way as explained in the Full refund with new split example. The amount specified in the commission will be debited from your account balance, and the remaining amount from the sub-entity balance.
Incremental authorization is not supported by the amount_allocations object. While it's possible to extend a split payment's authorization validity period, any increase to the amount is ignored when the payment is captured.