Praxis Wiki logo

Objects Card Data


The card data object represents the authorization details — the minimum required information to perform online payments.
A card is considered verified if it has at least one successful authorization recorded in our system.

{danger.fa-exclamation-triangle} IMPORTANT 1:
To collect, store, or transfer card details over API, the merchant must be PCI DSS compliant.


{danger.fa-exclamation-triangle} IMPORTANT 2:
To use an encrypted method for sending credit card information, refer to the Card Data (Encrypted) section.

STRUCTURE

✓ - required value
? - optional, value or null
✕ - always appears as null

Variable Type Auth Sale Payout Description
card_number varchar(19) Customer card number (4444333322221111)
card_exp varchar(8) Customer card exp (10/2023)
cvv varchar(4) Customer card CVV

EXAMPLE

{
    "card_number": "4444333322221111",
    "card_exp": "12\/2024",
    "cvv": "023"
}