Adyen · JSON Structure

Terminal Card Reader Apdu Response Structure

It contains the result of the requested service, APDU response sent by the chip of the card in response to the APDU request. Content of the Card Reader APDU Response message.

Type: object Properties: 3 Required: 2
PaymentsFinancial ServicesFintech

CardReaderAPDUResponse is a JSON Structure definition published by Adyen, describing 3 properties, of which 2 are required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

Response APDUData CardStatusWords

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/adyen/refs/heads/main/json-structure/terminal-card-reader-apdu-response-structure.json",
  "description": "It contains the result of the requested service, APDU response sent by the chip of the card in response to the APDU request. Content of the Card Reader APDU Response message.",
  "type": "object",
  "properties": {
    "Response": {
      "$ref": "#/components/schemas/Response"
    },
    "APDUData": {
      "type": "string",
      "format": "byte",
      "pattern": "^.+$",
      "description": "Data field of the APDU command (Lc + Data)."
    },
    "CardStatusWords": {
      "type": "string",
      "format": "byte",
      "pattern": "^.{2,2}$",
      "description": "Status of a smartcard response to a command (SW1-SW2)."
    }
  },
  "required": [
    "Response",
    "CardStatusWords"
  ],
  "name": "CardReaderAPDUResponse"
}