Adyen · Schema

PaymentToken

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.

PaymentsFinancial ServicesFintech

Properties

Name Type Description
TokenRequestedType object
TokenValue string
ExpiryDateTime string Expiry date and time. Limits the validity of a payment token.
View JSON Schema on GitHub

JSON Schema

adyen-paymenttoken-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/PaymentToken",
  "title": "PaymentToken",
  "type": "object",
  "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.",
  "properties": {
    "TokenRequestedType": {
      "$ref": "#/components/schemas/TokenRequestedType"
    },
    "TokenValue": {
      "type": "string",
      "pattern": "^.+$"
    },
    "ExpiryDateTime": {
      "type": "string",
      "format": "date-time",
      "description": "Expiry date and time. Limits the validity of a payment token."
    }
  },
  "required": [
    "TokenRequestedType",
    "TokenValue"
  ]
}