Adyen · Schema

StoredValueVoidRequest

PaymentsFinancial ServicesFintech

Properties

Name Type Description
merchantAccount string The merchant account identifier, with which you want to process the transaction.
originalReference string The original pspReference of the payment to modify.
reference string Your reference for the payment modification. This reference is visible in Customer Area and in reports. Maximum length: 80 characters.
store string The physical store, for which this payment is processed.
tenderReference string The reference of the tender.
uniqueTerminalId string The unique ID of a POS terminal.
View JSON Schema on GitHub

JSON Schema

adyen-storedvaluevoidrequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/StoredValueVoidRequest",
  "title": "StoredValueVoidRequest",
  "properties": {
    "merchantAccount": {
      "description": "The merchant account identifier, with which you want to process the transaction.",
      "type": "string"
    },
    "originalReference": {
      "description": "The original pspReference of the payment to modify.",
      "type": "string"
    },
    "reference": {
      "description": "Your reference for the payment modification. This reference is visible in Customer Area and in reports.\nMaximum length: 80 characters.",
      "type": "string"
    },
    "store": {
      "description": "The physical store, for which this payment is processed.",
      "maxLength": 16,
      "minLength": 1,
      "type": "string"
    },
    "tenderReference": {
      "description": "The reference of the tender.",
      "type": "string"
    },
    "uniqueTerminalId": {
      "description": "The unique ID of a POS terminal.",
      "type": "string"
    }
  },
  "required": [
    "merchantAccount",
    "originalReference"
  ],
  "type": "object"
}