paymentcardtoken
The table storing tokenized payment card data, enabling secure processing without storing sensitive card details.
Columns
| Name | Type | References | Description |
| cardbrand | String | The brand of the card (such as Visa, MasterCard, or American Express), used to identify the card type for payment processing. | |
| cardexpirationdate | String | The expiration date of the card, typically in MM/YY format, indicating when the card is no longer valid. | |
| cardissueridnumber | String | The identification number assigned by the card issuer, used for verifying the card’s origin or issuing financial institution. | |
| cardlastfourdigits | String | The last four digits of the card number, often displayed for security purposes or to identify the card without revealing the full number. | |
| cardnameoncard | String | The name of the cardholder as printed on the card, used for identity verification during transactions. | |
| cardtype | String | The type of card (such as credit, debit, or prepaid), specifying the kind of financial product being used. | |
| entity | String | The entity associated with the card (such as a customer or partner), used to reference the record or account holder. | |
| externalid | String | A unique identifier assigned to the card or account by an external system, used for integration or synchronization purposes. | |
| id | Integer | A unique internal identifier for the card record, used to reference and manage the record within the system. | |
| instrumenttype | String | The type of payment instrument (such as a physical card, virtual card, or digital wallet), used for processing transactions. | |
| isdefault | Boolean | Indicates whether the card is the default payment method for the entity, often used for automatic payments or recurring transactions. | |
| isinactive | Boolean | Indicates whether the card is inactive, often used to flag cards that are no longer in use or have been deactivated. | |
| mask | String | A masked version of the card number, displaying only the last few digits for security purposes (for example, **** **** **** 1234). | |
| memo | String | A brief note or description attached to the card record, often used for internal tracking or clarifying details about the card. | |
| paymentmethod | String | The method used for making payments (such as credit card, debit card, or bank transfer), specifying the type of payment instrument. | |
| preserveonfile | Boolean | Indicates whether the card details are stored on file for future use, such as for recurring payments or subscriptions. | |
| state | String | The state or region associated with the billing address for the card, used for address verification during payment processing. | |
| token | String | A secure token used to represent the card or payment instrument in transactions, allowing for tokenized payments without exposing card details. | |
| tokenexpirationdate | String | The expiration date of the token, indicating when the tokenized representation of the card will no longer be valid. | |
| tokenfamily | String | The family or category of tokens to which the current token belongs, used for organizing or managing tokenized payment instruments. | |
| tokennamespace | String | The namespace or context in which the token is used, often referring to the system or platform that generated the token for processing payments. |