## Retrieve an Issuing card Use `stripe.retrieveIssuingCard` in the [Issuing Elements](/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](/issuing/elements.md#web-api-integration) for more details. `stripe.retrieveIssuingCard` will return a `Promise` which resolves with a `result` object. This object has either: * `result.issuingCard`: the successful [Issuing card](/api/issuing/cards/object). * `result.error`: an error. Refer to the [API reference](/api/errors) for all possible errors. **Syntax:** `stripe.retrieveIssuingCard(...)` - `issuingCard` (string) **required** The `id` of an existing [Issuing card](/api/issuing/cards/object.md). - `options` (object) **required** An options object to configure the Issuing card retrieved from this method. - `ephemeralKeySecret` (string) **required** 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](/issuing/elements.md#create-secure-endpoint) for more details. - `nonce` (string) **required** The ephemeral key nonce returned by [stripe.createEphemeralKeyNonce](/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` (array) 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. ### Retrieve an Issuing card ```js stripe.retrieveIssuingCard( 'ic_1ITi6XKYfU8ZP6raDAXem8ql', { ephemeralKeySecret: 'ek_test_YWNjdF8xSVRpNkhLWWZVOFpQNnJhLGNYbEpnTEJXUUN4aWhsUHFwMXR1S2NsSDdnc3JTdWY_00GReOJAVP ', nonce: 'ephkn_pub_i4LvSOayGrKKHm6DYLOOKmzX', }, ).then(function(result) { // Handle result.error or result.issuingCard }); ```