Mayson Monorepo Documentation
    Preparing search index...

    You can create physical or virtual cards that are issued to cardholders.

    interface Card {
        id: string;
        object: "issuing.card";
        brand: string;
        cancellation_reason: Stripe.Issuing.Card.CancellationReason;
        cardholder: Stripe.Issuing.Cardholder;
        created: number;
        currency: string;
        cvc?: string;
        exp_month: number;
        exp_year: number;
        financial_account?: string;
        last4: string;
        latest_fraud_warning: Stripe.Issuing.Card.LatestFraudWarning;
        livemode: boolean;
        metadata: Metadata;
        number?: string;
        personalization_design: string | Stripe.Issuing.PersonalizationDesign;
        replaced_by: string | Stripe.Issuing.Card;
        replacement_for: string | Stripe.Issuing.Card;
        replacement_reason: Stripe.Issuing.Card.ReplacementReason;
        second_line: string;
        shipping: Stripe.Issuing.Card.Shipping;
        spending_controls: Stripe.Issuing.Card.SpendingControls;
        status: Stripe.Issuing.Card.Status;
        type: Stripe.Issuing.Card.Type;
        wallets: Stripe.Issuing.Card.Wallets;
    }
    Index

    Properties

    id: string

    Unique identifier for the object.

    object: "issuing.card"

    String representing the object's type. Objects of the same type share the same value.

    brand: string

    The brand of the card.

    cancellation_reason: Stripe.Issuing.Card.CancellationReason

    The reason why the card was canceled.

    An Issuing Cardholder object represents an individual or business entity who is issued cards.

    Related guide: How to create a cardholder

    created: number

    Time at which the object was created. Measured in seconds since the Unix epoch.

    currency: string

    Three-letter ISO currency code, in lowercase. Supported currencies are usd in the US, eur in the EU, and gbp in the UK.

    cvc?: string

    The card's CVC. For security reasons, this is only available for virtual cards, and will be omitted unless you explicitly request it with the expand parameter. Additionally, it's only available via the "Retrieve a card" endpoint, not via "List all cards" or any other endpoint.

    exp_month: number

    The expiration month of the card.

    exp_year: number

    The expiration year of the card.

    financial_account?: string

    The financial account this card is attached to.

    last4: string

    The last 4 digits of the card number.

    latest_fraud_warning: Stripe.Issuing.Card.LatestFraudWarning

    Stripe's assessment of whether this card's details have been compromised. If this property isn't null, cancel and reissue the card to prevent fraudulent activity risk.

    livemode: boolean

    Has the value true if the object exists in live mode or the value false if the object exists in test mode.

    metadata: Metadata

    Set of key-value pairs that you can attach to an object. This can be useful for storing additional information about the object in a structured format.

    number?: string

    The full unredacted card number. For security reasons, this is only available for virtual cards, and will be omitted unless you explicitly request it with the expand parameter. Additionally, it's only available via the "Retrieve a card" endpoint, not via "List all cards" or any other endpoint.

    personalization_design: string | Stripe.Issuing.PersonalizationDesign

    The personalization design object belonging to this card.

    replaced_by: string | Stripe.Issuing.Card

    The latest card that replaces this card, if any.

    replacement_for: string | Stripe.Issuing.Card

    The card this card replaces, if any.

    replacement_reason: Stripe.Issuing.Card.ReplacementReason

    The reason why the previous card needed to be replaced.

    second_line: string

    Text separate from cardholder name, printed on the card.

    Where and how the card will be shipped.

    spending_controls: Stripe.Issuing.Card.SpendingControls

    Whether authorizations can be approved on this card. May be blocked from activating cards depending on past-due Cardholder requirements. Defaults to inactive.

    The type of the card.

    Information relating to digital wallets (like Apple Pay and Google Pay).