Properties
| Name | Type | Description |
|---|---|---|
| amount | object | The amount that you want to capture. The `currency` must match the currency used in authorisation, the `value` must be smaller than or equal to the authorised amount. |
| applicationInfo | object | Information about your application. For more details, see [Building Adyen solutions](https://docs.adyen.com/development-resources/building-adyen-solutions). |
| lineItems | array | Price and product information of the refunded items, required for [partial refunds](https://docs.adyen.com/online-payments/refund#refund-a-payment). > This field is required for partial refunds with 3 |
| merchantAccount | string | The merchant account that is used to process the payment. |
| platformChargebackLogic | object | Defines how to book chargebacks when using [Adyen for Platforms](https://docs.adyen.com/marketplaces-and-platforms/processing-payments#chargebacks-and-disputes). |
| reference | string | Your reference for the capture request. Maximum length: 80 characters. |
| splits | array | An array of objects specifying how the amount should be split between accounts when using Adyen for Platforms. For details, refer to [Providing split information](https://docs.adyen.com/marketplaces-a |
| subMerchants | array | A List of sub-merchants. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/PaymentCaptureRequest",
"title": "PaymentCaptureRequest",
"properties": {
"amount": {
"description": "The amount that you want to capture. The `currency` must match the currency used in authorisation, the `value` must be smaller than or equal to the authorised amount.",
"$ref": "#/components/schemas/Amount"
},
"applicationInfo": {
"description": "Information about your application. For more details, see [Building Adyen solutions](https://docs.adyen.com/development-resources/building-adyen-solutions).",
"$ref": "#/components/schemas/ApplicationInfo"
},
"lineItems": {
"description": "Price and product information of the refunded items, required for [partial refunds](https://docs.adyen.com/online-payments/refund#refund-a-payment).\n> This field is required for partial refunds with 3x 4x Oney, Affirm, Afterpay, Atome, Clearpay, Klarna, Ratepay, Walley, and Zip.",
"items": {
"$ref": "#/components/schemas/LineItem"
},
"type": "array"
},
"merchantAccount": {
"description": "The merchant account that is used to process the payment.",
"type": "string"
},
"platformChargebackLogic": {
"x-addedInVersion": "70",
"description": "Defines how to book chargebacks when using [Adyen for Platforms](https://docs.adyen.com/marketplaces-and-platforms/processing-payments#chargebacks-and-disputes).",
"$ref": "#/components/schemas/PlatformChargebackLogic"
},
"reference": {
"description": "Your reference for the capture request. Maximum length: 80 characters.",
"type": "string"
},
"splits": {
"description": "An array of objects specifying how the amount should be split between accounts when using Adyen for Platforms. For details, refer to [Providing split information](https://docs.adyen.com/marketplaces-and-platforms/processing-payments#providing-split-information).",
"items": {
"$ref": "#/components/schemas/Split"
},
"type": "array"
},
"subMerchants": {
"x-addedInVersion": "70",
"description": "A List of sub-merchants.",
"items": {
"$ref": "#/components/schemas/SubMerchantInfo"
},
"type": "array"
}
},
"required": [
"merchantAccount",
"amount"
],
"type": "object"
}