Adyen · Schema

StandalonePaymentCancelRequest

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.
paymentReference string The [`reference`](https://docs.adyen.com/api-explorer/#/CheckoutService/latest/post/payments__reqParam_reference) of the payment that you want to cancel.
reference string Your reference for the cancel request. Maximum length: 80 characters.
View JSON Schema on GitHub

JSON Schema

adyen-standalonepaymentcancelrequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/StandalonePaymentCancelRequest",
  "title": "StandalonePaymentCancelRequest",
  "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"
    },
    "paymentReference": {
      "description": "The [`reference`](https://docs.adyen.com/api-explorer/#/CheckoutService/latest/post/payments__reqParam_reference) of the payment that you want to cancel.",
      "type": "string"
    },
    "reference": {
      "description": "Your reference for the cancel request. Maximum length: 80 characters.",
      "type": "string"
    }
  },
  "required": [
    "merchantAccount",
    "paymentReference"
  ],
  "type": "object"
}