Adyen · Schema

ModifyResponse

PaymentsFinancial ServicesFintech

Properties

Name Type Description
additionalData object This field contains additional data, which may be returned in a particular response.
pspReference string Adyen's 16-character string reference associated with the transaction. This value is globally unique; quote it when communicating with us about this response.
response string The response: * In case of success, it is either `payout-confirm-received` or `payout-decline-received`. * In case of an error, an informational message is returned.
View JSON Schema on GitHub

JSON Schema

adyen-modifyresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ModifyResponse",
  "title": "ModifyResponse",
  "properties": {
    "additionalData": {
      "additionalProperties": {
        "type": "string"
      },
      "description": "This field contains additional data, which may be returned in a particular response.",
      "type": "object"
    },
    "pspReference": {
      "description": "Adyen's 16-character string reference associated with the transaction. This value is globally unique; quote it when communicating with us about this response.",
      "type": "string"
    },
    "response": {
      "description": "The response:\n* In case of success, it is either `payout-confirm-received` or `payout-decline-received`.\n* In case of an error, an informational message is returned.",
      "type": "string"
    }
  },
  "required": [
    "pspReference",
    "response"
  ],
  "type": "object"
}