Retrieve Issuing Card
Retrieve an Issuing card
Last verified 2026-09-24
Is this helpful?
stripe.retrieveIssuingCard(issuingCard: string, options: object) Use stripe.retrieveIssuingCard in the Issuing Elements flow to retrieve an Issuing card. Note that once you retrieve the card, you still need to display the card details in Elements. You need to pass in the issuing_elements_2 beta to the Stripe instance to access this method. Refer to our integration guide for more details. - issuingCard The id of an existing Issuing card. - options An options object to configure the Issuing card retrieved from this method. - ephemeralKeySecret The ephemeral key secret retrieved from the API. The card id used to retrieve the ephemeral key must match the card id passed into this method. See the integration guide for more details. - nonce The ephemeral key nonce returned by stripe.createEphemeralKeyNonce. The card id used to create the nonce must match the card id passed into this method. - expand An array of Card fields to expand in the response from the Stripe API. Can be one or more of number, cvc, and pin.number. Expand fields as required to display Issuing Elements for those fields. ### Example title Retrieve an Issuing card Is this helpful?