# Get token details Retrieves details of a specific network token by its ID. Endpoint: GET /api/network/tokens/{id} Version: EAP Security: APIKey, AdminToken ## Path parameters: - `id` (string, required) The ID of the token to retrieve. ## Response 200 fields (application/json): - `id` (string, required) Example: "123e4567-e89b-12d3-a456-426614174000" - `card` (object, required) Example: {"cardholder_name":"John Doe","expiry_month":12,"expiry_year":2025,"masked_account_number":"411111******1111","scheme":"visa"} - `card.cardholder_name` (string) Example: "John Doe" - `card.expiry_month` (integer, required) Example: 12 - `card.expiry_year` (integer, required) Example: 2025 - `card.masked_account_number` (string, required) Example: "411111******1111" - `card.scheme` (string, required) Enum: "visa", "mastercard", "american express", "discover", "diners club", "jcb", "unionpay" - `created_at` (string, required) Example: "2023-10-01T12:00:00Z" - `network_token` (object, required) Example: {"status":"active","type":"vts"} - `network_token.scheme_reference` (string) The ID of the network token at the scheme. This value is only present if Delegated Authentication is active for the instance. - `network_token.status` (string, required) Enum: "active", "inactive", "deleted" - `network_token.type` (string, required) The network token type. Enum: "vts", "mdes", "tms" - `pci_token_id` (string) The ID of the PCI token that represents the Example: "32e4567-e89b-12d3-a456-426614174000" - `metadata` (object) Metadata consisting of entries, each of which each includes a key and an associated value: * Maximum 20 key-value pairs. * Maximum 20 characters per key. * Maximum 80 characters per value. Example: {"my_key_one":"my_value_one","my_key_two":"my_value_two"} ## Response 401 fields (application/json): - `code` (integer) The corresponding HTTP status code for the error - `classifier` (string) Technical code that helps to identify the error - `message` (string) Human readable representation of the error ## Response 403 fields (application/json): - `code` (integer) The corresponding HTTP status code for the error - `classifier` (string) Technical code that helps to identify the error - `message` (string) Human readable representation of the error ## Response 404 fields (application/json): - `code` (integer) The corresponding HTTP status code for the error - `classifier` (string) Technical code that helps to identify the error - `message` (string) Human readable representation of the error