Adyen · Schema

StandalonePaymentCancelResponse

StandalonePaymentCancelResponse schema from Adyen API

PaymentsFinancial ServicesFintech

Properties

Name Type Description
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 to cancel.
pspReference string Adyen's 16-character reference associated with the cancel request.
reference string Your reference for the cancel request.
status string The status of your request. This will always have the value **received**.
View JSON Schema on GitHub

JSON Schema

checkout-standalone-payment-cancel-response-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/adyen/refs/heads/main/json-schema/checkout-standalone-payment-cancel-response-schema.json",
  "title": "StandalonePaymentCancelResponse",
  "description": "StandalonePaymentCancelResponse schema from Adyen API",
  "type": "object",
  "properties": {
    "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 to cancel.",
      "type": "string"
    },
    "pspReference": {
      "description": "Adyen's 16-character reference associated with the cancel request.",
      "type": "string"
    },
    "reference": {
      "description": "Your reference for the cancel 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",
    "paymentReference"
  ]
}