Adyen · Schema

PaymentReversalRequest

PaymentsFinancial ServicesFintech

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 reversal request. Maximum length: 80 characters.
View JSON Schema on GitHub

JSON Schema

adyen-paymentreversalrequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/PaymentReversalRequest",
  "title": "PaymentReversalRequest",
  "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 reversal request. Maximum length: 80 characters.",
      "type": "string"
    }
  },
  "required": [
    "merchantAccount"
  ],
  "type": "object"
}