Adyen · Schema

ModificationResult

PaymentsFinancial ServicesFintech

Properties

Name Type Description
additionalData object This field contains additional data, which may be returned in a particular modification response.
pspReference string Adyen's 16-character string reference associated with the transaction/request. This value is globally unique; quote it when communicating with us about this request.
response string Indicates if the modification request has been received for processing.
View JSON Schema on GitHub

JSON Schema

adyen-modificationresult-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ModificationResult",
  "title": "ModificationResult",
  "properties": {
    "additionalData": {
      "additionalProperties": {
        "type": "string"
      },
      "description": "This field contains additional data, which may be returned in a particular modification response.",
      "type": "object"
    },
    "pspReference": {
      "description": "Adyen's 16-character string reference associated with the transaction/request. This value is globally unique; quote it when communicating with us about this request.",
      "type": "string"
    },
    "response": {
      "description": "Indicates if the modification request has been received for processing.",
      "enum": [
        "[capture-received]",
        "[cancel-received]",
        "[refund-received]",
        "[cancelOrRefund-received]",
        "[adjustAuthorisation-received]",
        "[donation-received]",
        "[technical-cancel-received]",
        "[voidPendingRefund-received]"
      ],
      "type": "string"
    }
  },
  "required": [
    "response",
    "pspReference"
  ],
  "type": "object"
}