# Get token details Get a token by its identifier. Endpoint: GET /api/pci/tokens/{id} Version: EAP Security: APIKey, AdminToken ## Path parameters: - `id` (string, required) The ID of the token to read. ## Response 200 fields (application/json): - `id` (string, required) Example: "8744c9ea-a02b-4ae6-875c-b64fc333e3ef" - `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" - `expires_at` (string) - `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