Adyen · JSON Structure

Terminal Payment Token Structure

Surrogate of the PAN (Primary Account Number) of the payment card to identify the payment mean of the customer. It allows, for a merchant, to identify the customer.

Type: object Properties: 3 Required: 2
PaymentsFinancial ServicesFintech

PaymentToken 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

TokenRequestedType TokenValue ExpiryDateTime

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-payment-token-structure.json",
  "description": "Surrogate of the PAN (Primary Account Number) of the payment card to  identify the payment mean of the customer. It allows, for a merchant, to identify   the customer.",
  "type": "object",
  "properties": {
    "TokenRequestedType": {
      "$ref": "#/components/schemas/TokenRequestedType"
    },
    "TokenValue": {
      "type": "string",
      "pattern": "^.+$"
    },
    "ExpiryDateTime": {
      "type": "datetime",
      "description": "Expiry date and time. Limits the validity of a payment token."
    }
  },
  "required": [
    "TokenRequestedType",
    "TokenValue"
  ],
  "name": "PaymentToken"
}