You can create physical or virtual cards that are issued to cardholders.
Attributes
- idstring
Unique identifier for the object.
- cancellation_
reasonnullable enum The reason why the card was canceled.
Possible enum valuesdesign_rejected The design of this card was rejected by Stripe for violating our partner guidelines.
fulfillment_error There was an error in fulfilling the card. This reason is only valid for cards of type
physical.lostThe card was lost.
stolenThe card was stolen.
- cardholderobject
The Cardholder object to which the card belongs.
- currencyenum
Three-letter ISO currency code, in lowercase. Supported currencies are
usdin the US,eurin the EU, andgbpin the UK. - exp_
monthinteger The expiration month of the card.
- exp_
yearinteger The expiration year of the card.
- last4string
The last 4 digits of the card number.
- metadataobject
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.
- statusenum
Whether authorizations can be approved on this card. May be blocked from activating cards depending on past-due Cardholder requirements. Defaults to
inactive.Possible enum valuesactiveThe card can approve authorizations. If the card is linked to a cardholder with past-due requirements, you may be unable to change the card’s status to ‘active’.
canceledThe card will decline authorizations with the
card_reason. This status is permanent.canceled inactiveThe card will decline authorizations with the
card_reason.inactive - typeenum
The type of the card.
Possible enum valuesphysicalA physical card will be printed and shipped. It can be used at physical terminals.
virtualNo physical card will be printed. The card can be used online and can be added to digital wallets.
More attributes
- objectstring
- brandstring
- createdtimestamp
- cvcnullable stringExpandable
- latest_
fraud_ warningnullable object - lifecycle_
controlsnullable object - livemodeboolean
- numbernullable stringExpandable
- personalization_
designnullable stringExpandable - replaced_
bynullable stringExpandable - replacement_
fornullable stringExpandable - replacement_
reasonnullable enum - second_
linenullable string - shippingnullable object
- spending_
controlsobject - walletsnullable object
{ "id": "ic_1MvSieLkdIwHu7ixn6uuO0Xu", "object": "issuing.card", "brand": "Visa", "cancellation_reason": null, "cardholder": { "id": "ich_1MsKAB2eZvKYlo2C3eZ2BdvK", "object": "issuing.cardholder", "billing": { "address": { "city": "Anytown", "country": "US", "line1": "123 Main Street", "line2": null, "postal_code": "12345", "state": "CA" } }, "company": null, "created": 1680415995, "email": null, "individual": null, "livemode": false, "metadata": {}, "name": "John Doe", "phone_number": null, "requirements": { "disabled_reason": "requirements.past_due", "past_due": [ "individual.card_issuing.user_terms_acceptance.ip", "individual.card_issuing.user_terms_acceptance.date", "individual.first_name", "individual.last_name" ] }, "spending_controls": { "allowed_categories": [], "blocked_categories": [], "spending_limits": [], "spending_limits_currency": null }, "status": "active", "type": "individual" }, "created": 1681163868, "currency": "usd", "exp_month": 8, "exp_year": 2024, "last4": "4242", "livemode": false, "metadata": {}, "replaced_by": null, "replacement_for": null, "replacement_reason": null, "shipping": null, "spending_controls": { "allowed_categories": null, "blocked_categories": null, "spending_limits": [], "spending_limits_currency": null }, "status": "active", "type": "virtual", "wallets": { "apple_pay": { "eligible": false, "ineligible_reason": "missing_cardholder_contact" }, "google_pay": { "eligible": false, "ineligible_reason": "missing_cardholder_contact" }, "primary_account_identifier": null }}Creates an Issuing Card object.
Parameters
- currencystringRequired
The currency for the card.
- typeenumRequired
The type of card to issue. Possible values are
physicalorvirtual.Possible enum valuesphysicalA physical card will be printed and shipped. It can be used at physical terminals.
virtualNo physical card will be printed. The card can be used online and can be added to digital wallets.
- cardholderstringRequired
The Cardholder object with which the card will be associated.
- exp_
monthinteger The desired expiration month (1-12) for this card if specifying a custom expiration date.
- exp_
yearinteger The desired 4-digit expiration year for this card if specifying a custom expiration date.
- metadataobject
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. Individual keys can be unset by posting an empty value to them. All keys can be unset by posting an empty value to
metadata. - statusenum
Whether authorizations can be approved on this card. May be blocked from activating cards depending on past-due Cardholder requirements. Defaults to
inactive.Possible enum valuesactiveThe card can approve authorizations. If the card is linked to a cardholder with past-due requirements, you may be unable to change the card’s status to ‘active’.
inactiveThe card will decline authorizations with the
card_reason.inactive
More parameters
- lifecycle_
controlsobject - personalization_
designstring - pinobject
- replacement_
forstring - replacement_
reasonenum - second_
linestring - shippingobject
- spending_
controlsobject
Returns
Returns an Issuing Card object if creation succeeds.
curl https://api.stripe.com/v1/issuing/cards \ -u "sk_test_VePHdqK...NInc7u56JBrQsk_test_VePHdqKTYQjKNInc7u56JBrQ:" \ -d cardholder={{CARDHOLDER_ID}} \ -d currency=usd \ -d type=virtual{ "id": "ic_1MvSieLkdIwHu7ixn6uuO0Xu", "object": "issuing.card", "brand": "Visa", "cancellation_reason": null, "cardholder": { "id": "ich_1MsKAB2eZvKYlo2C3eZ2BdvK", "object": "issuing.cardholder", "billing": { "address": { "city": "Anytown", "country": "US", "line1": "123 Main Street", "line2": null, "postal_code": "12345", "state": "CA" } }, "company": null, "created": 1680415995, "email": null, "individual": null, "livemode": false, "metadata": {}, "name": "John Doe", "phone_number": null, "requirements": { "disabled_reason": "requirements.past_due", "past_due": [ "individual.card_issuing.user_terms_acceptance.ip", "individual.card_issuing.user_terms_acceptance.date", "individual.first_name", "individual.last_name" ] }, "spending_controls": { "allowed_categories": [], "blocked_categories": [], "spending_limits": [], "spending_limits_currency": null }, "status": "active", "type": "individual" }, "created": 1681163868, "currency": "usd", "exp_month": 8, "exp_year": 2024, "last4": "4242", "livemode": false, "metadata": {}, "replaced_by": null, "replacement_for": null, "replacement_reason": null, "shipping": null, "spending_controls": { "allowed_categories": null, "blocked_categories": null, "spending_limits": [], "spending_limits_currency": null }, "status": "active", "type": "virtual", "wallets": { "apple_pay": { "eligible": false, "ineligible_reason": "missing_cardholder_contact" }, "google_pay": { "eligible": false, "ineligible_reason": "missing_cardholder_contact" }, "primary_account_identifier": null }}