Properties
| Name | Type | Description |
|---|---|---|
| applicationInfo | object | Information about your application. For more details, see [Building Adyen solutions](https://docs.adyen.com/development-resources/building-adyen-solutions). |
| merchantAccount | string | The merchant account that is used to process the payment. |
| reference | string | Your reference for the cancel request. Maximum length: 80 characters. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/PaymentCancelRequest",
"title": "PaymentCancelRequest",
"properties": {
"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"
},
"merchantAccount": {
"description": "The merchant account that is used to process the payment.",
"type": "string"
},
"reference": {
"description": "Your reference for the cancel request. Maximum length: 80 characters.",
"type": "string"
}
},
"required": [
"merchantAccount"
],
"type": "object"
}