## Retrieve an Issuing card `stripe.retrieveIssuingCard(issuingCard: string, options: object)` Use `stripe.retrieveIssuingCard` in the [Issuing Elements](https://docs.stripe.com/issuing/elements.md) 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](https://docs.stripe.com/issuing/elements.md#web-api-integration) for more details. - `issuingCard` The `id` of an existing [Issuing card](https://docs.stripe.com/api/issuing/cards/object.md). - `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](https://docs.stripe.com/issuing/elements.md#create-secure-endpoint) for more details. - `nonce` The ephemeral key nonce returned by [stripe.createEphemeralKeyNonce](https://docs.stripe.com/js/issuing/create_ephemeral_key_nonce.md). 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 ```