Adyen · Schema

ResponseAdditionalDataNetworkTokens

ResponseAdditionalDataNetworkTokens schema from Adyen API

PaymentsFinancial ServicesFintech

Properties

Name Type Description
networkToken.available string Indicates whether a network token is available for the specified card.
networkToken.bin string The Bank Identification Number of a tokenized card, which is the first six digits of a card number.
networkToken.tokenSummary string The last four digits of a network token.
View JSON Schema on GitHub

JSON Schema

checkout-response-additional-data-network-tokens-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/checkout-response-additional-data-network-tokens-schema.json",
  "title": "ResponseAdditionalDataNetworkTokens",
  "description": "ResponseAdditionalDataNetworkTokens schema from Adyen API",
  "type": "object",
  "properties": {
    "networkToken.available": {
      "description": "Indicates whether a network token is available for the specified card.",
      "type": "string"
    },
    "networkToken.bin": {
      "description": "The Bank Identification Number of a tokenized card, which is the first six digits of a card number.",
      "type": "string"
    },
    "networkToken.tokenSummary": {
      "description": "The last four digits of a network token.",
      "type": "string"
    }
  }
}