CardTokenObject: {
    cardholder: string;
    city?: string;
    cvv?: number;
    exp_month: number;
    exp_year: number;
    number: string;
    postal_code: string;
    state_code?: string;
    street_1?: string;
    street_2?: string;
    token_nickname?: string;
}

Credit card token object

Type declaration

  • cardholder: string

    Cardholder name as it appears on card

  • Optional city?: string

    Credit Card billing address city name. Recommend providing this value for AVS checks and to avoid any downgrades.

  • Optional cvv?: number

    Credit Card validation code.

  • exp_month: number

    Credit card expiration month (1-12)

  • exp_year: number

    Credit card expiration year (4 digits)

  • number: string

    Credit card number to tokenize

  • postal_code: string

    Credit Card billing postal code

  • Optional state_code?: string

    Credit Card billing address ISO-3166-2 character state/province code. Recommend providing this value for AVS checks and to avoid any downgrades.

  • Optional street_1?: string

    Credit Card billing street 1 address. Recommend providing this value for AVS checks and to avoid any downgrades.

  • Optional street_2?: string

    Credit Card billing street 2 address

  • Optional token_nickname?: string

    Stored card nickname. Required if type is set to STORED

Generated using TypeDoc