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. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/ResponseAdditionalDataNetworkTokens",
"title": "ResponseAdditionalDataNetworkTokens",
"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"
}
},
"type": "object"
}