Properties
| Name | Type | Description |
|---|---|---|
| merchantAccount | string | The merchant account that is used to process the payment. |
| paymentPspReference | string | The [`pspReference`](https://docs.adyen.com/api-explorer/#/CheckoutService/latest/post/payments__resParam_pspReference) of the payment to reverse. |
| pspReference | string | Adyen's 16-character reference associated with the reversal request. |
| reference | string | Your reference for the reversal request. |
| status | string | The status of your request. This will always have the value **received**. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/PaymentReversalResponse",
"title": "PaymentReversalResponse",
"properties": {
"merchantAccount": {
"description": "The merchant account that is used to process the payment.",
"type": "string"
},
"paymentPspReference": {
"description": "The [`pspReference`](https://docs.adyen.com/api-explorer/#/CheckoutService/latest/post/payments__resParam_pspReference) of the payment to reverse. ",
"type": "string"
},
"pspReference": {
"description": "Adyen's 16-character reference associated with the reversal request.",
"type": "string"
},
"reference": {
"description": "Your reference for the reversal request.",
"type": "string"
},
"status": {
"description": "The status of your request. This will always have the value **received**.",
"enum": [
"received"
],
"type": "string"
}
},
"required": [
"status",
"merchantAccount",
"pspReference",
"paymentPspReference"
],
"type": "object"
}