Adyen · Schema

PaymentInstrumentData

Sent in the result of the payment transaction. For a card, it could also be sent in the CardAcquisition response, to be processed by the Sale System. Data related to the instrument of payment for the transaction.

PaymentsFinancial-ServicesFintech

Properties

Name Type Description
PaymentInstrumentType object
ProtectedCardData string
CardData object
CheckData object
MobileData object
StoredValueAccountID object
View JSON Schema on GitHub

JSON Schema

terminal-payment-instrument-data-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/terminal-payment-instrument-data-schema.json",
  "title": "PaymentInstrumentData",
  "description": "Sent in the result of the payment transaction. For a card, it could also be sent in the CardAcquisition response, to be processed by the Sale System. Data related to the instrument of payment for the transaction.",
  "type": "object",
  "properties": {
    "PaymentInstrumentType": {
      "$ref": "#/components/schemas/PaymentInstrumentType"
    },
    "ProtectedCardData": {
      "type": "string"
    },
    "CardData": {
      "$ref": "#/components/schemas/CardData"
    },
    "CheckData": {
      "$ref": "#/components/schemas/CheckData"
    },
    "MobileData": {
      "$ref": "#/components/schemas/MobileData"
    },
    "StoredValueAccountID": {
      "$ref": "#/components/schemas/StoredValueAccountID"
    }
  },
  "required": [
    "PaymentInstrumentType"
  ]
}