> ## Documentation Index
> Fetch the complete documentation index at: https://www.marqeta.com/docs/llms.txt
> Use this file to discover all available pages before exploring further.

# Cards

> Use the cards endpoint to create and manage resources that represent physical and virtual payment cards.

export const EndpointCard = ({method = "API", title, children, href, arrow = true}) => {
  const METHOD_STYLES = {
    GET: {
      bg: "mint-bg-green-400/20 dark:mint-bg-green-400/20",
      text: "mint-text-green-700 dark:mint-text-green-400",
      border: "mint-border-green-300 dark:mint-border-green-700"
    },
    POST: {
      bg: "mint-bg-blue-400/20 dark:mint-bg-blue-400/20",
      text: "mint-text-blue-700 dark:mint-text-blue-400"
    },
    PUT: {
      bg: "mint-bg-yellow-400/20 dark:mint-bg-yellow-400/20",
      text: "mint-text-yellow-700 dark:mint-text-yellow-400"
    },
    PATCH: {
      bg: "mint-bg-orange-400/20 dark:mint-bg-orange-400/20",
      text: "mint-text-orange-700 dark:mint-text-orange-400"
    },
    DELETE: {
      bg: "mint-bg-red-400/20 dark:mint-bg-red-400/20",
      text: "mint-text-red-700 dark:mint-text-red-400"
    },
    API: {
      bg: "mint-bg-black",
      text: "mint-text-white"
    }
  };
  const MethodBadge = ({method}) => {
    const style = METHOD_STYLES[method?.toUpperCase()] ?? METHOD_STYLES.GET;
    return <span className={`
          method-pill rounded-lg font-semibold px-1.5 py-0.5 text-xs leading-5 ${style.bg} ${style.text}`}>
        {method?.toUpperCase()}
      </span>;
  };
  const content = <div className="group flex items-center gap-4 border border-gray-200 dark:border-gray-700 rounded-xl p-5 hover:border-gray-400 dark:hover:border-gray-500 hover:shadow-md transition-all cursor-pointer">
      {}
      <div className="shrink-0">
        <MethodBadge method={method} />
      </div>
      {}
      <div className="flex-1 min-w-0">
        <p className="font-semibold text-gray-900 dark:text-white text-sm leading-snug">{title}</p>
        {children && <p className="mt-1 text-sm text-gray-500 dark:text-gray-400 line-clamp-2">{children}</p>}
      </div>
    </div>;
  if (!href) return content;
  return <a href={href} className="block no-underline border-b-0 mb-2">
      {content}
    </a>;
};

The `card` resource represents a payment card. Cards are derived from and controlled by the `cardproduct` resource. For more information on cards, see [About Cards](/developer-guides/about-cards/).

Some attributes of the `card` resource can be defined in an associated `bulkissuance` or `cardproduct` resource. If you define one of these attributes in more than one object, the order of precedence at fulfillment time is as follows:

<Steps>
  <Step>
    `card`
  </Step>

  <Step>
    `bulkissuance`
  </Step>

  <Step>
    `cardproduct`
  </Step>
</Steps>

Defining an attribute in an object with higher precedence overrides, but does not overwrite, the attribute in a lower-precedence object.

<h2 id="post_cards">
  Create card
</h2>

**Action:** `POST`\
**Endpoint:** `/cards`

{/* <EndpointCard
title="Creates a card"
path="/cards"
method="post"
/> */}

Creates a card.

Create the user and card product before you create the card. You create a card using the `user_token` of the user who will own the card and the `card_product_token` of the card product that will control the card.

<Tip>
  **Tip**\
  By default, newly created cards are inactive and must be explicitly activated (see [Create Card Transition](/core-api/card-transitions/#post_cardtransitions) for information on activating cards). To create cards that are activated upon issue, configure your card product’s `config.card_life_cycle.activate_upon_issue` field (see [Card Products](/core-api/card-products/)).
</Tip>

Send a `POST` request to `/pins/controltoken` to set the card’s personal identification number (PIN) if your program requires PIN numbers (for example, for Europay Mastercard and Visa cards); this action updates the `pin_is_set` field to `true`. See [Create or Update PIN](/core-api/pins/#put_pins) for details.

You can use optional query parameters to show the primary account number (PAN) and card verification value (CVV2) number in the response. If `show_pan` and `show_cvv_number` are set to `true`, the fulfillment state of the card is `DIGITALLY_PRESENTED` instead of the typical initial state of `ISSUED`. This fulfillment state does not affect the delivery of physical cards.

This endpoint requires PCI DSS compliance if `show_pan` and `show_cvv_number` are set to `true`. You must comply with PCI DSS data security requirements if you store, transmit, or process sensitive card data.

<h3 id="_url_query_parameters">
  URL query parameters
</h3>

| Fields                                                   | Description                                                                                                                              |
| -------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------- |
| show\_cvv\_number<br /><br />boolean<br /><br />Optional | Set to `true` to show the CVV2 number in the response.<br /><br />**Allowable Values:**<br /><br />`true`, `false`                       |
| show\_pan<br /><br />boolean<br /><br />Optional         | Set to `true` to show the full primary account number (PAN) in the response.<br /><br />**Allowable Values:**<br /><br />`true`, `false` |

<h3 id="_request_body">
  Request body
</h3>

| Fields                                                                                                          | Description                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          |
| --------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| activation\_actions<br /><br />object<br /><br />Optional                                                       | Defines actions to execute when the card is activated. The fields in this object are mutually exclusive.<br /><br />**Allowable Values:**<br /><br />`swap_digital_wallet_tokens_from_card_token`, `terminate_reissued_source_card`                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  |
| activation\_actions.**swap\_digital\_wallet\_tokens\_from\_card\_token**<br /><br />string<br /><br />Optional  | Moves all digital wallet tokens from the specified card to the new card.<br /><br />Not relevant when `reissue_pan_from_card_token` is set.<br /><br />Send a `GET` request to `/cards/user/{token}` to retrieve card tokens for a particular user.<br /><br />**Allowable Values:**<br /><br />1–36 chars<br /><br />Existing card token                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            |
| activation\_actions.**terminate\_reissued\_source\_card**<br /><br />boolean<br /><br />Optional                | If you are reissuing a card, the source card is terminated by default. To prevent the source card from being terminated, set this field to `false`.<br /><br />Only relevant when `reissue_pan_from_card_token` is set.<br /><br />**Allowable Values:**<br /><br />`true`, `false`<br /><br />**Default value:**<br />`true`                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        |
| bulk\_issuance\_token<br /><br />string<br /><br />Optional                                                     | Associates the card with the specified bulk card order. This field cannot be updated.<br /><br />**Allowable Values:**<br /><br />36 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        |
| card\_product\_token<br /><br />string<br /><br />Required                                                      | Unique identifier of the card product.<br /><br />**Allowable Values:**<br /><br />1–36 chars<br /><br />Existing card product token.<br /><br />Send a `GET` request to `/cardproducts` to retrieve card product tokens.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            |
| expedite<br /><br />boolean<br /><br />Optional                                                                 | Set to `true` to request expedited processing of the card by your card fulfillment provider.<br /><br />This expedited service is available for cards fulfilled by <a href="http://perfectplastic.com/" target="_blank" rel="noopener">Perfect Plastic Printing</a>, <a href="http://www.idemia.com" target="_blank" rel="noopener">IDEMIA</a>, and <a href="https://www.arroweye.com/" target="_blank" rel="noopener">Arroweye Solutions</a>.<br /><br />**NOTE:** Contact your Marqeta representative for information regarding the cost of expedited service.<br /><br />**Allowable Values:**<br /><br />`true`, `false`<br /><br />**Default value:**<br />`false`                                                                                                                                                                                                                                                                                                                              |
| expiration\_offset<br /><br />object<br /><br />Optional                                                        | Specifies the length of time after the date of issue for which the cards are valid.<br /><br />**Allowable Values:**<br /><br />`unit`, `value`                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      |
| expiration\_offset.**unit**<br /><br />string<br /><br />Optional                                               | Specifies the units for the `value` field in this object.<br /><br />**Allowable Values:**<br /><br />`YEARS`, `MONTHS`, `DAYS`, `HOURS`, `MINUTES`, `SECONDS`<br /><br />**Default value:**<br />`YEARS`                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            |
| expiration\_offset.**value**<br /><br />integer<br /><br />Optional                                             | Specifies the number of time units (as defined by the `unit` field in this object) for which the cards are valid. In other words, cards expire `value` x `unit` after the date of issue.<br /><br />This number is rounded as follows:<br /><br />- **YEARS** – Rounds up to the last second of the last day of the month of expiration. For example, if the issue date is 1 Jan 2021 and `value = 1`, the cards expire on the last day of Jan 2022.<br />- **MONTHS** – Rounds up to the last second of the last day of the month of expiration. For example, if the issue date is 1 May 2022 and `value = 1`, the cards expire on the last day of June 2022.<br />- **DAYS** – Rounds up to the last second of the day of expiration.<br />- **HOURS**, **MINUTES**, **SECONDS** – No rounding.<br /><br />**Allowable Values:**<br /><br />Any positive integer<br /><br />**Default value:**<br />4                                                                                              |
| fulfillment<br /><br />object<br /><br />Optional                                                               | Specifies certain physical characteristics of a card, as well as shipment information.<br /><br />**Allowable Values:**<br /><br />`card_fulfillment_reason`, `card_personalization`, `shipping`                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     |
| fulfillment.**card\_fulfillment\_reason**<br /><br />string<br /><br />Optional                                 | Reason for card fulfillment.<br /><br />**Allowable Values:**<br /><br />`NEW`, `LOST_STOLEN`, `EXPIRED`                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| fulfillment.**card\_personalization**<br /><br />object<br /><br />Required                                     | Specifies personalized attributes to be added to the card.<br /><br />**Allowable Values:**<br /><br />`carrier`, `images`, `perso_type`, `text`                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     |
| fulfillment.card\_personalization.**carrier**<br /><br />object<br /><br />Optional                             | Specifies attributes of the card carrier.<br /><br />**Allowable Values:**<br /><br />`logo_file`, `logo_thumbnail_file`, `message_file`, `message_line`, `template_id`                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              |
| fulfillment.card\_personalization.carrier.**logo\_file**<br /><br />string<br /><br />Optional                  | Specifies an image to display on the card carrier.<br /><br />**Allowable Values:**<br /><br />Contains the name of the image file and must match the name of the file you send to your fulfillment provider.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        |
| fulfillment.card\_personalization.carrier.**logo\_thumbnail\_file**<br /><br />string<br /><br />Optional       | Specifies a thumbnail-sized rendering of the image specified in the `logo_file` field.<br /><br />**Allowable Values:**<br /><br />Contains the name of the image file and must match the name of the file you send to your fulfillment provider.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    |
| fulfillment.card\_personalization.carrier.**message\_file**<br /><br />string<br /><br />Optional               | Specifies a text file containing a custom message to print on the card carrier.<br /><br />**Allowable Values:**<br /><br />Contains the name of the text file and must match the name of the file you send to your fulfillment provider.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            |
| fulfillment.card\_personalization.carrier.**message\_line**<br /><br />string<br /><br />Optional               | Specifies a custom message that appears on the card carrier.<br /><br />**Allowable Values:**<br /><br />60 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 |
| fulfillment.card\_personalization.carrier.**message\_line\_2**<br /><br />string<br /><br />Optional            | Specifies the second line of a custom message that appears on the card carrier.<br /><br />**Allowable Values:**<br /><br />60 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              |
| fulfillment.card\_personalization.carrier.**template\_id**<br /><br />string<br /><br />Optional                | Specifies the card carrier template to use.<br /><br />**Allowable Values:**<br /><br />Card carrier template ID                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     |
| fulfillment.card\_personalization.**images**<br /><br />object<br /><br />Optional                              | Specifies personalized images that appear on the card.<br /><br />**Allowable Values:**<br /><br />`card`, `carrier`, `carrier_return_window`, `signature`                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           |
| fulfillment.card\_personalization.images.**card**<br /><br />object<br /><br />Optional                         | Specifies personalized images that appear on the card.<br /><br />**Allowable Values:**<br /><br />`name`, `thermal_color`                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           |
| fulfillment.card\_personalization.images.card.**name**<br /><br />string<br /><br />Optional                    | Specifies a PNG image to display on the card.<br /><br />**Allowable Values:**<br /><br />Contains the name of the image file and must match the name of the file you send to your fulfillment provider.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| fulfillment.card\_personalization.images.card.**thermal\_color**<br /><br />string<br /><br />Optional          | Specifies the color of the image displayed on the card.<br /><br />**Allowable Values:**<br /><br />Contains the name of the color and must match one of the provider’s predefined colors.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           |
| fulfillment.card\_personalization.images.**carrier**<br /><br />object<br /><br />Optional                      | Specifies personalized images that appear on the card carrier.<br /><br />**Allowable Values:**<br /><br />`message_1`, `name`                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       |
| fulfillment.card\_personalization.images.carrier.**message\_1**<br /><br />string<br /><br />Optional           | Specifies a custom message that appears on the card carrier.<br /><br />**Allowable Values:**<br /><br />60 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 |
| fulfillment.card\_personalization.images.carrier.**name**<br /><br />string<br /><br />Optional                 | Specifies a PNG image to display on the card carrier.<br /><br />**Allowable Values:**<br /><br />Contains the name of the image file and must match the name of the file you send to your fulfillment provider.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     |
| fulfillment.card\_personalization.images.**carrier\_return\_window**<br /><br />object<br /><br />Optional      | Specifies a PNG image to display in the return address window of envelopes used for sending cards to cardholders.<br /><br />**Allowable Values:**<br /><br />`name`                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 |
| fulfillment.card\_personalization.images.carrier\_return\_window.**name**<br /><br />string<br /><br />Optional | Specifies a PNG image to display in the return address window of envelopes used for sending cards to cardholders.<br /><br />**Allowable Values:**<br /><br />Contains the name of the image file and must match the name of the file you send to your fulfillment provider.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         |
| fulfillment.card\_personalization.images.**signature**<br /><br />object<br /><br />Optional                    | Specifies a PNG image of the cardholder’s signature.<br /><br />**Allowable Values:**<br /><br />`name`                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              |
| fulfillment.card\_personalization.images.signature.**name**<br /><br />string<br /><br />Optional               | Specifies a PNG image of the cardholder’s signature.<br /><br />**Allowable Values:**<br /><br />Contains the name of the image file and must match the name of the file you send to your fulfillment provider.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      |
| fulfillment.card\_personalization.**perso\_type**<br /><br />string<br /><br />Optional                         | Specifies the type of card personalization.<br /><br />**Allowable Values:**<br /><br />`EMBOSS`, `LASER`, `FLAT`                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    |
| fulfillment.card\_personalization.**text**<br /><br />object<br /><br />Required                                | Specifies personalized text that appears on the card.<br /><br />**Allowable Values:**<br /><br />`name_line_1`, `name_line_2`, `name_line_3`                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        |
| fulfillment.card\_personalization.text.**name\_line\_1**<br /><br />object<br /><br />Required                  | Specifies the first line of personalized text that appears on the card.<br /><br />**Allowable Values:**<br /><br />`name_line_1.value`<br /><br />21 char max; if `name_line_1_numeric_postfix` is `true`, 14 char max.<br /><br />Strings longer than the character limit are truncated.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           |
| fulfillment.card\_personalization.text.name\_line\_1.**value**<br /><br />string<br /><br />Optional            | Line of personalized text printed on the card.<br /><br />**Allowable Values:**<br /><br />21 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               |
| fulfillment.card\_personalization.text.**name\_line\_2**<br /><br />object<br /><br />Optional                  | Specifies the second line of personalized text that appears on the card.<br /><br />**Allowable Values:**<br /><br />`name_line_2.value`                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| fulfillment.card\_personalization.text.name\_line\_2.**value**<br /><br />string<br /><br />Optional            | Line of personalized text printed on the card.<br /><br />**Allowable Values:**<br /><br />21 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               |
| fulfillment.card\_personalization.text.**name\_line\_3**<br /><br />object<br /><br />Optional                  | Specifies the third line of personalized text that appears on the card.<br /><br />**Allowable Values:**<br /><br />`name_line_3.value`                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              |
| fulfillment.card\_personalization.text.name\_line\_3.**value**<br /><br />string<br /><br />Optional            | Line of personalized text printed on the card.<br /><br />**Allowable Values:**<br /><br />21 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               |
| fulfillment.**shipping**<br /><br />object<br /><br />Optional                                                  | Specifies shipping details for the order.<br /><br />**Allowable Values:**<br /><br />`care_of_line`, `method`, `recipient_address`, `return_address`                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                |
| fulfillment.shipping.**care\_of\_line**<br /><br />string<br /><br />Optional                                   | Adds the specified value as a care of (C/O) line to the mailing carrier.<br /><br />**NOTE:** This field can be specified on cards, card products, and bulk card orders. If you specify this field at multiple levels, the order of precedence is: card, bulk card order, card product.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     |
| fulfillment.shipping.**method**<br /><br />string<br /><br />Optional                                           | Specifies the shipping service.<br /><br />**Allowable Values:**<br /><br />`LOCAL_MAIL`, `LOCAL_MAIL_PACKAGE`, `GROUND`, `TWO_DAY`, `OVERNIGHT`, `INTERNATIONAL`, `INTERNATIONAL_PRIORITY`, `LOCAL_PRIORITY`, `FEDEX_EXPEDITED`, `FEDEX_REGULAR`, `UPS_EXPEDITED`, `UPS_REGULAR`, `USPS_EXPEDITED`, `USPS_REGULAR`<br /><br />Shipping options vary by card provider. For details on the specific shipping companies and services offered by your card provider, contact your Marqeta representative.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               |
| fulfillment.shipping.**recipient\_address**<br /><br />object<br /><br />Optional                               | Address to which the order will be shipped.<br /><br />In order to generate cards, a valid shipping address must be provided by one of these:<br /><br />- The card or bulk card order’s `fulfillment.shipping.recipient_address` field<br />- The users' `address` fields<br />- The card product’s `config.fulfillment.shipping.recipient_address` field<br /><br />The order of precedence from highest to lowest is card, user, card product. To be valid, an address must have the `address1`, `city`, `state`, and `postal_code` or `zip` fields populated. The `country` field defaults to USA if unpopulated.<br /><br />**Allowable Values:**<br /><br />Valid `recipient_address` object                                                                                                                                                                                                                                                                                                   |
| fulfillment.shipping.recipient\_address.**address1**<br /><br />string<br /><br />Optional                      | Number and street of the address.<br /><br />**Allowable Values:**<br /><br />255 char max<br /><br />Limits lower than 255 characters may be imposed by providers. Perfect Plastic Printing and IDEMIA have a limit of 100 characters, and Arroweye Solutions has a limit of 50 characters.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         |
| fulfillment.shipping.recipient\_address.**address2**<br /><br />string<br /><br />Optional                      | Additional address information.<br /><br />**Allowable Values:**<br /><br />255 char max<br /><br />Limits lower than 255 characters may be imposed by providers. Perfect Plastic Printing and IDEMIA have a limit of 100 characters, and Arroweye Solutions has a limit of 50 characters.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           |
| fulfillment.shipping.recipient\_address.**city**<br /><br />string<br /><br />Optional                          | City of the address.<br /><br />**Allowable Values:**<br /><br />40 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         |
| fulfillment.shipping.recipient\_address.**country**<br /><br />string<br /><br />Optional                       | Country of the address.<br /><br />**Allowable Values:**<br /><br />40 char max<br /><br />English short name. For example, for the Kingdom of Spain, use the English short name "Spain".<br /><br />The ISO maintains the <a href="https://www.iso.org/obp/ui/#search/code/" target="_blank" rel="noopener">full list of country codes</a>.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         |
| fulfillment.shipping.recipient\_address.**first\_name**<br /><br />string<br /><br />Optional                   | First name of the addressee.<br /><br />**Allowable Values:**<br /><br />40 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 |
| fulfillment.shipping.recipient\_address.**last\_name**<br /><br />string<br /><br />Optional                    | Last name of the addressee.<br /><br />**Allowable Values:**<br /><br />40 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  |
| fulfillment.shipping.recipient\_address.**middle\_name**<br /><br />string<br /><br />Optional                  | Middle name of the addressee.<br /><br />**Allowable Values:**<br /><br />40 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                |
| fulfillment.shipping.recipient\_address.**phone**<br /><br />string<br /><br />Optional                         | Telephone number of the addressee.<br /><br />**Allowable Values:**<br /><br />20 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           |
| fulfillment.shipping.recipient\_address.**postal\_code**<br /><br />string<br /><br />Optional                  | Postal code of the address.<br /><br />**Allowable Values:**<br /><br />10 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  |
| fulfillment.shipping.recipient\_address.**state**<br /><br />string<br /><br />Optional                         | State of the address.<br /><br />**Allowable Values:**<br /><br />32 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        |
| fulfillment.shipping.recipient\_address.**zip**<br /><br />string<br /><br />Optional                           | United States ZIP code of the address.<br /><br />**Allowable Values:**<br /><br />10 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       |
| fulfillment.shipping.**return\_address**<br /><br />object<br /><br />Optional                                  | Address to which the order will be returned if shipping fails.<br /><br />**Allowable Values:**<br /><br />`address1`, `address2`, `city`, `country`, `first_name`, `last_name`, `middle_name`, `phone`, `postal_code`, `state`, `zip`                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               |
| fulfillment.shipping.return\_address.**address1**<br /><br />string<br /><br />Optional                         | Number and street of the address.<br /><br />**Allowable Values:**<br /><br />255 char max<br /><br />Limits lower than 255 characters may be imposed by providers. Perfect Plastic Printing and IDEMIA have a limit of 100 characters, and Arroweye Solutions has a limit of 50 characters.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         |
| fulfillment.shipping.return\_address.**address2**<br /><br />string<br /><br />Optional                         | Additional address information.<br /><br />**Allowable Values:**<br /><br />255 char max<br /><br />Limits lower than 255 characters may be imposed by providers. Perfect Plastic Printing and IDEMIA have a limit of 100 characters, and Arroweye Solutions has a limit of 50 characters.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           |
| fulfillment.shipping.return\_address.**city**<br /><br />string<br /><br />Optional                             | City of the address.<br /><br />**Allowable Values:**<br /><br />40 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         |
| fulfillment.shipping.return\_address.**country**<br /><br />string<br /><br />Optional                          | Country of the address.<br /><br />**Allowable Values:**<br /><br />40 char max<br /><br />English short name. For example, for the Kingdom of Spain, use the English short name "Spain".<br /><br />The ISO maintains the <a href="https://www.iso.org/obp/ui/#search/code/" target="_blank" rel="noopener">full list of country codes</a>.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         |
| fulfillment.shipping.return\_address.**first\_name**<br /><br />string<br /><br />Optional                      | First name of the addressee.<br /><br />**Allowable Values:**<br /><br />40 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 |
| fulfillment.shipping.return\_address.**last\_name**<br /><br />string<br /><br />Optional                       | Last name of the addressee.<br /><br />**Allowable Values:**<br /><br />40 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  |
| fulfillment.shipping.return\_address.**middle\_name**<br /><br />string<br /><br />Optional                     | Middle name of the addressee.<br /><br />**Allowable Values:**<br /><br />40 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                |
| fulfillment.shipping.return\_address.**phone**<br /><br />string<br /><br />Optional                            | Telephone number of the addressee.<br /><br />**Allowable Values:**<br /><br />20 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           |
| fulfillment.shipping.return\_address.**postal\_code**<br /><br />string<br /><br />Optional                     | Postal code of the address.<br /><br />**Allowable Values:**<br /><br />10 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  |
| fulfillment.shipping.return\_address.**state**<br /><br />string<br /><br />Optional                            | State of the address.<br /><br />**Allowable Values:**<br /><br />32 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        |
| fulfillment.shipping.return\_address.**zip**<br /><br />string<br /><br />Optional                              | United States ZIP code of the address.<br /><br />**Allowable Values:**<br /><br />10 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       |
| generate\_new\_pan<br /><br />boolean<br /><br />Optional                                                       | Set to `true` to generate a new PAN when reissuing a card via the `reissue_pan_from_card_token` field.<br /><br />This field can only be used within the `reissue_pan_from_card_token` re-issuance flow.<br /><br />**Allowable Values:**<br /><br />`true`, `false`<br /><br />**Default value:**<br />`false`                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      |
| metadata<br /><br />object<br /><br />Optional                                                                  | Associates customer-provided metadata with the card.<br /><br />**Allowable Values:**<br /><br />You can define the names and values of up to 20 fields in the format `"my_name_1": "my_value_1"`.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   |
| reissue\_pan\_from\_card\_token<br /><br />string<br /><br />Optional                                           | Reissues the specified card (known as the "source" card).<br /><br />This field reissues a card by copying the primary account number (PAN) and personal identification number (PIN) from the specified source card to the newly created card. The reissued card has the same PAN and PIN as the source card but a new expiration date and CVV2 number.<br /><br />If you would like to reissue a card with a new PAN, set `generate_new_pan` to `true`.<br /><br />Send a `GET` request to `/cards/user/{token}` to retrieve card tokens for a particular user.<br /><br />**NOTE:** By default, the source card is automatically terminated when the reissued card is activated. However, if your program is configured for multiple active cards, you can prevent the source card from being automatically terminated by setting the `activation_actions.terminate_reissued_source_card` field to `false`.<br /><br />**Allowable Values:**<br /><br />36 char max<br /><br />Existing card token |
| new\_pan\_from\_card\_token<br /><br />string<br /><br />Optional                                               | Reissues the specified card (known as the "source" card) with a new primary account number (PAN).<br /><br />This field reissues a card with a new PAN from the specified source card. The source card is automatically terminated when the card is reissued with the new PAN. Use this field when reissuing a lost or stolen card.<br /><br />Send a `GET` request to `/cards/user/{token}` to retrieve card tokens for a particular user.<br /><br />**Allowable Values:**<br /><br />36 char max<br /><br />Existing card token                                                                                                                                                                                                                                                                                                                                                                                                                                                                   |
| token<br /><br />string<br /><br />Optional                                                                     | Unique identifier of the card.<br /><br />If you do not include a token, the system will generate one automatically. Other API calls will require this token, so we recommend creating a token that is easy to remember rather than letting the system generate one. This value cannot be updated.<br /><br />**Allowable Values:**<br /><br />1–36 chars                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            |
| translate\_pin\_from\_card\_token<br /><br />string<br /><br />Optional                                         | Copies the PIN from the specified card to the newly created card.<br /><br />Both cards must belong to the same user. Populating this field will raise an error if `reissue_pan_from_card_token` is also set.<br /><br />To copy a PIN when reissuing a card, use `copy_pin_from_source_card` instead.<br /><br />Send a `GET` request to `/cards/user/{token}` to retrieve card tokens for a particular user.<br /><br />**Allowable Values:**<br /><br />36 char max<br /><br />Existing card token                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                |
| copy\_pin\_from\_source\_card<br /><br />boolean<br /><br />Optional                                            | Copies the PIN from the source card to the newly reissued card.<br /><br />If the source card does not have a PIN, the request is processed and the new card is created without a PIN and the `pin_is_set` field is set to `false`.<br /><br />The reissued card is created without a PIN, regardless whether the source card has one, if `copy_pin_from_source_card` is set to `false` in the card reissue request. This field can only be used with `reissue_pan_from_card_token` or `new_pan_from_card_token` fields. An error is raised if the `translate_pin_from_card_token` field is used in the request.<br /><br />This field is not returned in the response.<br /><br />**Allowable Values:**<br /><br />`true`, `false`<br /><br />**Default value:**<br />`true`                                                                                                                                                                                                                        |
| user\_token<br /><br />string<br /><br />Required                                                               | Unique identifier of the authorized user of the card.<br /><br />**Allowable Values:**<br /><br />1–36 chars<br /><br />Existing user token<br /><br />Send a `GET` request to `/users` to retrieve user tokens.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     |

<h3 id="_sample_request_body">
  Sample request body
</h3>

```json JSON expandable lines wrap theme={null}
{
  "token": "my_test_card_01",
  "user_token": "my_user_01",
  "fulfillment": {
    "card_personalization": {
      "text": {
        "name_line_1": {
          "value": "Jane Doe"
        },
        "name_line_2": {
          "value": "My card personalization line 2"
        }
      },
      "images": {
        "card": {
          "name": "my_card_logo.png",
          "thermal_color": "Black"
        },
        "signature": {
          "name": "my_signature.png"
        },
        "carrier_return_window": {
          "name": "my_return_address_image.png"
        }
      }
    }
  },
  "card_product_token": "my_cardproduct_01",
  "metadata": {
    "my_name_1": "my_value_1",
    "my_name_2": "my_value_2"
  }
}
```

<h3 id="_response_body">
  Response body
</h3>

| Fields                                                                                                                        | Description                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          |
| ----------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| activation\_actions<br /><br />object<br /><br />Conditionally returned                                                       | Defines actions to execute when the card is activated. The fields in this object are mutually exclusive.<br /><br />**Allowable Values:**<br /><br />`swap_digital_wallet_tokens_from_card_token`, `terminate_reissued_source_card`                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  |
| activation\_actions.**swap\_digital\_wallet\_tokens\_from\_card\_token**<br /><br />string<br /><br />Conditionally returned  | Moves all digital wallet tokens from the specified card to the new card.<br /><br />Not relevant when `reissue_pan_from_card_token` is set.<br /><br />Send a `GET` request to `/cards/user/{token}` to retrieve card tokens for a particular user.<br /><br />**Allowable Values:**<br /><br />1–36 chars<br /><br />Existing card token                                                                                                                                                                                                                                                                                                                                                                                                                            |
| activation\_actions.**terminate\_reissued\_source\_card**<br /><br />boolean<br /><br />Conditionally returned                | If you are reissuing a card, the source card is terminated by default. To prevent the source card from being terminated, set this field to `false`.<br /><br />Only relevant when `reissue_pan_from_card_token` is set.<br /><br />**Allowable Values:**<br /><br />`true`, `false`<br /><br />**Default value:**<br />`true`                                                                                                                                                                                                                                                                                                                                                                                                                                        |
| barcode<br /><br />string<br /><br />Returned                                                                                 | Barcode printed on the card, expressed as numerals.<br /><br />**Allowable Values:**<br /><br />10-20 chars                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          |
| bulk\_issuance\_token<br /><br />string<br /><br />Conditionally returned                                                     | Unique identifier of the bulk card order.<br /><br />**Allowable Values:**<br /><br />1-36 chars                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     |
| card\_product\_token<br /><br />string<br /><br />Returned                                                                    | Unique identifier of the card product.<br /><br />**Allowable Values:**<br /><br />1-36 chars                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        |
| chip\_cvv\_number<br /><br />string<br /><br />Conditionally returned                                                         | Three-digit card verification value (ICVV) stored on the chip of the card.<br /><br />**Allowable Values:**<br /><br />3 chars                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       |
| contactless\_exemption\_counter<br /><br />integer<br /><br />Conditionally returned                                          | Running count of the contactless transactions successfully completed since the last strong customer authentication (SCA) challenge was issued. You can limit the number of contactless transactions that can be performed without issuing an SCA challenge at the card product level.<br /><br />For more information about strong customer authentication, see <a href="/core-api/card-products/">Card Products</a>.<br /><br />**Allowable Values:**<br /><br />Any integer                                                                                                                                                                                                                                                                                        |
| contactless\_exemption\_total\_amount<br /><br />decimal<br /><br />Conditionally returned                                    | Running total of the money spent in contactless transactions successfully completed since the last strong customer authentication (SCA) challenge was issued. You can limit the total amount that can be spent in contactless transactions without issuing an SCA challenge at the card product level.<br /><br />For more information about strong customer authentication, see <a href="/core-api/card-products/">Card Products</a>.<br /><br />**Allowable Values:**<br /><br />Any integer                                                                                                                                                                                                                                                                       |
| contactless\_exemption\_transaction\_currency<br /><br />string<br /><br />Conditionally returned                             | Indicates the currency type of the transaction.<br /><br />**Allowable Values:**<br /><br />Valid three-character <a href="https://www.iso.org/iso-4217-currency-codes.html" target="_blank" rel="noopener">ISO 4217 currency code</a>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               |
| created\_time<br /><br />datetime<br /><br />Returned                                                                         | Date and time when the resource was created, in UTC.<br /><br />**Allowable Values:**<br /><br />datetime<br /><br />**Format:**<br />yyyy-MM-ddThh:mm:ssZ                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           |
| cvv\_number<br /><br />string<br /><br />Conditionally returned                                                               | Three-digit card verification value (CVV2 or CVC2) printed on the card.<br /><br />**Allowable Values:**<br /><br />3 chars                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          |
| expedite<br /><br />boolean<br /><br />Conditionally returned                                                                 | A value of `true` indicates that you requested expedited processing of the card from your card fulfillment provider.<br /><br />**Allowable Values:**<br /><br />`true`, `false`                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     |
| expiration<br /><br />string<br /><br />Returned                                                                              | Expiration date in `MMyy` format.<br /><br />**Allowable Values:**<br /><br />Format: MMyy                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           |
| expiration\_time<br /><br />datetime<br /><br />Returned                                                                      | Expiration date and time, in UTC.<br /><br />**Allowable Values:**<br /><br />datetime<br /><br />**Format:**<br />yyyy-MM-ddThh:mm:ssZ                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              |
| fulfillment<br /><br />object<br /><br />Conditionally returned                                                               | Determines physical characteristics of a card and shipment information.<br /><br />**Allowable Values:**<br /><br />`card_fulfillment_reason`, `card_personalization`, `shipping`                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    |
| fulfillment.**card\_fulfillment\_reason**<br /><br />string<br /><br />Conditionally returned                                 | Descriptive reason for the card fulfillment.<br /><br />**Allowable Values:**<br /><br />`NEW`, `LOST_STOLEN`, `EXPIRED`                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| fulfillment.**card\_personalization**<br /><br />object<br /><br />Returned                                                   | Specifies personalized attributes to be added to the card.<br /><br />**Allowable Values:**<br /><br />`carrier`, `images`, `perso_type`, `text`                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     |
| fulfillment.card\_personalization.**carrier**<br /><br />object<br /><br />Conditionally returned                             | Specifies attributes of the card carrier.<br /><br />**Allowable Values:**<br /><br />`logo_file`, `logo_thumbnail_file`, `message_file`, `message_line`, `template_id`                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              |
| fulfillment.card\_personalization.carrier.**logo\_file**<br /><br />string<br /><br />Conditionally returned                  | Specifies an image to display on the card carrier.<br /><br />**Allowable Values:**<br /><br />Contains the name of the image file and must match the name of the file you send to your fulfillment provider.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        |
| fulfillment.card\_personalization.carrier.**logo\_thumbnail\_file**<br /><br />string<br /><br />Conditionally returned       | Specifies a thumbnail-sized rendering of the image specified in the `logo_file` field.<br /><br />**Allowable Values:**<br /><br />Contains the name of the image file and must match the name of the file you send to your fulfillment provider.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    |
| fulfillment.card\_personalization.carrier.**message\_file**<br /><br />string<br /><br />Conditionally returned               | Specifies a text file containing a custom message to print on the card carrier.<br /><br />**Allowable Values:**<br /><br />Contains the name of the text file and must match the name of the file you send to your fulfillment provider.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            |
| fulfillment.card\_personalization.carrier.**message\_line**<br /><br />string<br /><br />Conditionally returned               | Specifies a custom message that appears on the card carrier.<br /><br />**Allowable Values:**<br /><br />60 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 |
| fulfillment.card\_personalization.carrier.**message\_line\_2**<br /><br />string<br /><br />Conditionally returned            | Specifies the second line of a custom message that appears on the card carrier.<br /><br />**Allowable Values:**<br /><br />60 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              |
| fulfillment.card\_personalization.carrier.**template\_id**<br /><br />string<br /><br />Conditionally returned                | Specifies the card carrier template to use.<br /><br />**Allowable Values:**<br /><br />Card carrier template ID                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     |
| fulfillment.card\_personalization.**images**<br /><br />object<br /><br />Conditionally returned                              | Specifies personalized images that appear on the card.<br /><br />**Allowable Values:**<br /><br />`card`, `carrier`, `carrier_return_window`, `signature`                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           |
| fulfillment.card\_personalization.images.**card**<br /><br />object<br /><br />Conditionally returned                         | Specifies personalized images that appear on the card.<br /><br />**Allowable Values:**<br /><br />`name`, `thermal_color`                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           |
| fulfillment.card\_personalization.images.card.**name**<br /><br />string<br /><br />Conditionally returned                    | Specifies a PNG image to display on the card.<br /><br />**Allowable Values:**<br /><br />Contains the name of the image file and must match the name of the file you send to your fulfillment provider.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| fulfillment.card\_personalization.images.card.**thermal\_color**<br /><br />string<br /><br />Conditionally returned          | Specifies the color of the image displayed on the card.<br /><br />**Allowable Values:**<br /><br />Contains the name of the color and must match one of the provider’s predefined colors.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           |
| fulfillment.card\_personalization.images.**carrier**<br /><br />object<br /><br />Conditionally returned                      | Specifies personalized images that appear on the card carrier.<br /><br />**Allowable Values:**<br /><br />`message_1`, `name`                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       |
| fulfillment.card\_personalization.images.carrier.**message\_1**<br /><br />string<br /><br />Conditionally returned           | Specifies a custom message that appears on the card carrier.<br /><br />**Allowable Values:**<br /><br />60 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 |
| fulfillment.card\_personalization.images.carrier.**name**<br /><br />string<br /><br />Conditionally returned                 | Specifies a PNG image to display on the card carrier.<br /><br />**Allowable Values:**<br /><br />Contains the name of the image file and must match the name of the file you send to your fulfillment provider.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     |
| fulfillment.card\_personalization.images.**carrier\_return\_window**<br /><br />object<br /><br />Conditionally returned      | Specifies a PNG image to display in the return address window of envelopes used for sending cards to cardholders.<br /><br />**Allowable Values:**<br /><br />`name`                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 |
| fulfillment.card\_personalization.images.carrier\_return\_window.**name**<br /><br />string<br /><br />Conditionally returned | Specifies a PNG image to display in the return address window of envelopes used for sending cards to cardholders.<br /><br />**Allowable Values:**<br /><br />Contains the name of the image file and must match the name of the file you send to your fulfillment provider.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         |
| fulfillment.card\_personalization.images.**signature**<br /><br />object<br /><br />Conditionally returned                    | Specifies a PNG image of the cardholder’s signature.<br /><br />**Allowable Values:**<br /><br />`name`                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              |
| fulfillment.card\_personalization.images.signature.**name**<br /><br />string<br /><br />Conditionally returned               | Specifies a PNG image of the cardholder’s signature.<br /><br />**Allowable Values:**<br /><br />Contains the name of the image file and must match the name of the file you send to your fulfillment provider.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      |
| fulfillment.card\_personalization.**perso\_type**<br /><br />string<br /><br />Conditionally returned                         | Specifies the type of card personalization.<br /><br />**Allowable Values:**<br /><br />`EMBOSS`, `LASER`, `FLAT`                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    |
| fulfillment.card\_personalization.**text**<br /><br />object<br /><br />Returned                                              | Specifies personalized text that appears on the card.<br /><br />**Allowable Values:**<br /><br />`name_line_1`, `name_line_2`, `name_line_3`                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        |
| fulfillment.card\_personalization.text.**name\_line\_1**<br /><br />object<br /><br />Returned                                | Specifies the first line of personalized text that appears on the card.<br /><br />**Allowable Values:**<br /><br />`name_line_1.value`<br /><br />21 char max; if `name_line_1_numeric_postfix` is `true`, 14 char max.<br /><br />Strings longer than the character limit are truncated.                                                                                                                                                                                                                                                                                                                                                                                                                                                                           |
| fulfillment.card\_personalization.text.name\_line\_1.**value**<br /><br />string<br /><br />Conditionally returned            | Line of personalized text printed on the card.<br /><br />**Allowable Values:**<br /><br />21 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               |
| fulfillment.card\_personalization.text.**name\_line\_2**<br /><br />object<br /><br />Conditionally returned                  | Specifies the second line of personalized text that appears on the card.<br /><br />**Allowable Values:**<br /><br />`name_line_2.value`                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| fulfillment.card\_personalization.text.name\_line\_2.**value**<br /><br />string<br /><br />Conditionally returned            | Line of personalized text printed on the card.<br /><br />**Allowable Values:**<br /><br />21 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               |
| fulfillment.card\_personalization.text.**name\_line\_3**<br /><br />object<br /><br />Conditionally returned                  | Specifies the third line of personalized text that appears on the card.<br /><br />**Allowable Values:**<br /><br />`name_line_3.value`                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              |
| fulfillment.card\_personalization.text.name\_line\_3.**value**<br /><br />string<br /><br />Conditionally returned            | Line of personalized text printed on the card.<br /><br />**Allowable Values:**<br /><br />21 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               |
| fulfillment.**shipping**<br /><br />object<br /><br />Conditionally returned                                                  | Specifies shipping details for the order.<br /><br />This object is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />`care_of_line`, `method`, `recipient_address`, `return_address`                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               |
| fulfillment.shipping.**care\_of\_line**<br /><br />string<br /><br />Conditionally returned                                   | Specifies the value of the care of (C/O) line on the mailing carrier.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       |
| fulfillment.shipping.**method**<br /><br />string<br /><br />Conditionally returned                                           | Specifies the shipping service.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />`LOCAL_MAIL`, `LOCAL_MAIL_PACKAGE`, `GROUND`, `TWO_DAY`, `OVERNIGHT`, `INTERNATIONAL`, `INTERNATIONAL_PRIORITY`, `LOCAL_PRIORITY`, `FEDEX_EXPEDITED`, `FEDEX_REGULAR`, `UPS_EXPEDITED`, `UPS_REGULAR`, `USPS_EXPEDITED`, `USPS_REGULAR`                                                                                                                                                                                                                                                                                                                                                                                  |
| fulfillment.shipping.**recipient\_address**<br /><br />object<br /><br />Conditionally returned                               | Address to which the order will be shipped.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />Existing `recipient_address` object                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          |
| fulfillment.shipping.recipient\_address.**address1**<br /><br />string<br /><br />Conditionally returned                      | Number and street of the address.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />255 char max<br /><br />Limits lower than 255 characters may be imposed by providers. Perfect Plastic Printing and IDEMIA have a limit of 100 characters, and Arroweye Solutions has a limit of 50 characters.                                                                                                                                                                                                                                                                                                                                                                                                         |
| fulfillment.shipping.recipient\_address.**address2**<br /><br />string<br /><br />Conditionally returned                      | Additional address information.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />255 char max<br /><br />Limits lower than 255 characters may be imposed by providers. Perfect Plastic Printing and IDEMIA have a limit of 100 characters, and Arroweye Solutions has a limit of 50 characters.                                                                                                                                                                                                                                                                                                                                                                                                           |
| fulfillment.shipping.recipient\_address.**city**<br /><br />string<br /><br />Conditionally returned                          | City of the address.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />40 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         |
| fulfillment.shipping.recipient\_address.**country**<br /><br />string<br /><br />Conditionally returned                       | Country of the address.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />40 char max<br /><br />English short name. For example, for the Kingdom of Spain, use the English short name "Spain". The ISO maintains the <a href="https://www.iso.org/obp/ui/#search/code/" target="_blank" rel="noopener">full list of country codes</a>.                                                                                                                                                                                                                                                                                                                                                                    |
| fulfillment.shipping.recipient\_address.**first\_name**<br /><br />string<br /><br />Conditionally returned                   | First name of the addressee.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />40 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 |
| fulfillment.shipping.recipient\_address.**last\_name**<br /><br />string<br /><br />Conditionally returned                    | Last name of the addressee.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />40 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  |
| fulfillment.shipping.recipient\_address.**middle\_name**<br /><br />string<br /><br />Conditionally returned                  | Middle name of the addressee.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />40 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                |
| fulfillment.shipping.recipient\_address.**phone**<br /><br />string<br /><br />Conditionally returned                         | Telephone number of the addressee.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />20 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           |
| fulfillment.shipping.recipient\_address.**postal\_code**<br /><br />string<br /><br />Conditionally returned                  | Postal code of the address.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />10 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  |
| fulfillment.shipping.recipient\_address.**state**<br /><br />string<br /><br />Conditionally returned                         | State or province of the address.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />32 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            |
| fulfillment.shipping.recipient\_address.**zip**<br /><br />string<br /><br />Conditionally returned                           | United States ZIP code of the address.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />10 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       |
| fulfillment.shipping.**return\_address**<br /><br />object<br /><br />Conditionally returned                                  | Address to which the order will be returned if shipping fails.<br /><br />This object is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />Existing `return_address` object                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         |
| fulfillment.shipping.return\_address.**address1**<br /><br />string<br /><br />Conditionally returned                         | Number and street of the address.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />255 char max<br /><br />Limits lower than 255 characters may be imposed by providers. Perfect Plastic Printing and IDEMIA have a limit of 100 characters, and Arroweye Solutions has a limit of 50 characters.                                                                                                                                                                                                                                                                                                                                                                                                         |
| fulfillment.shipping.return\_address.**address2**<br /><br />string<br /><br />Conditionally returned                         | Additional address information.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />255 char max<br /><br />Limits lower than 255 characters may be imposed by providers. Perfect Plastic Printing and IDEMIA have a limit of 100 characters, and Arroweye Solutions has a limit of 50 characters.                                                                                                                                                                                                                                                                                                                                                                                                           |
| fulfillment.shipping.return\_address.**city**<br /><br />string<br /><br />Conditionally returned                             | City of the address.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />40 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         |
| fulfillment.shipping.return\_address.**country**<br /><br />string<br /><br />Conditionally returned                          | Country of the address.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />40 char max<br /><br />English short name. For example, for the Kingdom of Spain, use the English short name "Spain". The ISO maintains the <a href="https://www.iso.org/obp/ui/#search/code/" target="_blank" rel="noopener">full list of country codes</a>.                                                                                                                                                                                                                                                                                                                                                                    |
| fulfillment.shipping.return\_address.**first\_name**<br /><br />string<br /><br />Conditionally returned                      | First name of the addressee.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />40 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 |
| fulfillment.shipping.return\_address.**last\_name**<br /><br />string<br /><br />Conditionally returned                       | Last name of the addressee.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />40 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  |
| fulfillment.shipping.return\_address.**middle\_name**<br /><br />string<br /><br />Conditionally returned                     | Middle name of the addressee.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />40 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                |
| fulfillment.shipping.return\_address.**phone**<br /><br />string<br /><br />Conditionally returned                            | Telephone number of the addressee.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />20 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           |
| fulfillment.shipping.return\_address.**postal\_code**<br /><br />string<br /><br />Conditionally returned                     | Postal code of the address.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />10 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  |
| fulfillment.shipping.return\_address.**state**<br /><br />string<br /><br />Conditionally returned                            | State or province of the address.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />32 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            |
| fulfillment.shipping.return\_address.**zip**<br /><br />string<br /><br />Conditionally returned                              | United States ZIP code of the address.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />10 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       |
| fulfillment\_status<br /><br />string<br /><br />Returned                                                                     | Card fulfillment status:<br /><br />- **ISSUED:** Initial state of all newly created/issued cards.<br />- **ORDERED:** Card ordered through the card fulfillment provider.<br />- **REORDERED:** Card reordered through the card fulfillment provider.<br />- **REJECTED:** Card rejected by the card fulfillment provider.<br />- **SHIPPED:** Card shipped by the card fulfillment provider.<br />- **DELIVERED:** Card delivered by the card fulfillment provider.<br />- **DIGITALLY\_PRESENTED:** Card digitally presented using the `/cards/{token}/showpan` endpoint; does not affect the delivery of physical cards.<br /><br />**Allowable Values:**<br /><br />`ISSUED`, `ORDERED`, `REORDERED`, `REJECTED`, `SHIPPED`, `DELIVERED`, `DIGITALLY_PRESENTED` |
| instrument\_type<br /><br />string<br /><br />Conditionally returned                                                          | Instrument type of the card:<br /><br />- **PHYSICAL\_MSR:** A physical card with a magnetic stripe. This is the default physical card type.<br />- **PHYSICAL\_ICC:** A physical card with an integrated circuit, or "chip."<br />- **PHYSICAL\_CONTACTLESS:** A physical card that uses radio frequency identification (RFID) or near-field communication (NFC) to enable payment over a secure radio interface.<br />- **PHYSICAL\_COMBO:** A physical card with a chip that also supports contactless payments.<br />- **VIRTUAL\_PAN:** A virtual card with a primary account number (PAN).<br /><br />**Allowable Values:**<br /><br />`PHYSICAL_MSR`, `PHYSICAL_ICC`, `PHYSICAL_CONTACTLESS`, `PHYSICAL_COMBO`, `VIRTUAL_PAN`                                 |
| last\_four<br /><br />string<br /><br />Returned                                                                              | Last four digits of the card primary account number (PAN).<br /><br />**Allowable Values:**<br /><br />4 chars                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       |
| last\_modified\_time<br /><br />datetime<br /><br />Returned                                                                  | Date and time when the resource was last modified, in UTC.<br /><br />**Allowable Values:**<br /><br />datetime<br /><br />**Format:**<br />yyyy-MM-ddThh:mm:ssZ                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     |
| metadata<br /><br />object<br /><br />Conditionally returned                                                                  | Associates customer-provided metadata with the card.<br /><br />**Allowable Values:**<br /><br />Contains the names and values of up to 20 fields in the format `"my_name_1": "my_value_1"`                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          |
| pan<br /><br />string<br /><br />Returned                                                                                     | Primary account number (PAN) of the card.<br /><br />**Allowable Values:**<br /><br />16 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    |
| pin\_is\_set<br /><br />boolean<br /><br />Returned                                                                           | Specifies if the personal identification number (PIN) has been set for the card.<br /><br />**Allowable Values:**<br /><br />4 chars                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 |
| reissue\_pan\_from\_card\_token<br /><br />string<br /><br />Conditionally returned                                           | Reissues the specified card (known as the "source" card).<br /><br />**Allowable Values:**<br /><br />Existing card token                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            |
| new\_pan\_from\_card\_token<br /><br />string<br /><br />Conditionally returned                                               | Reissues the specified card (known as the "source" card) with a new primary account number (PAN).<br /><br />**Allowable Values:**<br /><br />Existing card token                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    |
| state<br /><br />string<br /><br />Returned                                                                                   | Indicates the state of the card.<br /><br />**Allowable Values:**<br /><br />`ACTIVE`, `SUSPENDED`, `TERMINATED`, `UNSUPPORTED`, `UNACTIVATED`, `LIMITED`                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            |
| state\_reason<br /><br />string<br /><br />Returned                                                                           | Descriptive reason for why the card is in its current state. For example, "Card activated by cardholder".<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   |
| token<br /><br />string<br /><br />Returned                                                                                   | Unique identifier of the card.<br /><br />**Allowable Values:**<br /><br />Existing card token                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       |
| translate\_pin\_from\_card\_token<br /><br />string<br /><br />Conditionally returned                                         | Copies the personal identification number (PIN) from the specified source card to the newly created card.<br /><br />**Allowable Values:**<br /><br />Existing card token                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            |
| user\_token<br /><br />string<br /><br />Returned                                                                             | Unique identifier of the cardholder.<br /><br />**Allowable Values:**<br /><br />Existing user token                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 |

<h3 id="_sample_response_body">
  Sample response body
</h3>

```json JSON expandable lines wrap theme={null}
{
  "created_time": "2022-02-26T20:40:04Z",
  "last_modified_time": "2022-02-26T20:40:04Z",
  "token": "my_test_card_01",
  "user_token": "my_user_01",
  "card_product_token": "my_cardproduct_01",
  "last_four": "6270",
  "pan": "1111111824986720",
  "expiration": "0331",
  "expiration_time": "2027-03-31T23:59:59Z",
  "barcode": "51554698491331520446",
  "pin_is_set": false,
  "state": "ACTIVE",
  "state_reason": "New card activated",
  "fulfillment_status": "ISSUED",
  "fulfillment": {
    "card_personalization": {
      "text": {
        "name_line_1": {
          "value": "Jane Doe"
        },
        "name_line_2": {
          "value": "My card personalization line 2"
        }
      },
      "images": {
        "card": {
          "name": "my_card_logo.png",
          "thermal_color": "Black"
        },
        "signature": {
          "name": "my_signature.png"
        },
        "carrier_return_window": {
          "name": "my_return_address_image.png"
        }
      }
    }
  },
  "instrument_type": "PHYSICAL_MSR",
  "expedite": false,
  "metadata": {
    "my_name_1": "my_value_1",
    "my_name_2": "my_value_2"
  }
}
```

<h2 id="get_cards">
  List cards by last 4 digits of PAN
</h2>

**Action:** `GET`\
**Endpoint:** `/cards`

{/* <EndpointCard
title="Lists cards by the last 4 digits"
path="/cards"
method="get"
/> */}

Retrieves an array of cards whose primary account numbers (PANs) end in the four digits specified by the `last_four` query parameter.

This endpoint supports [field filtering](/core-api/field-filtering/), [object expansion](/core-api/object-expansion/), [sorting, and pagination](/core-api/sorting-and-pagination/).

<h3 id="_url_query_parameters_2">
  URL query parameters
</h3>

| Fields                                              | Description                                                                                                                                                                                                                                                                                                                                                                                       |
| --------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| count<br /><br />integer<br /><br />Optional        | Number of resources to retrieve.<br /><br />**Allowable Values:**<br /><br />1-10<br /><br />**Default value:**<br />5                                                                                                                                                                                                                                                                            |
| start\_index<br /><br />integer<br /><br />Optional | Sort order index of the first resource in the returned array.<br /><br />**Allowable Values:**<br /><br />Any integer<br /><br />**Default value:**<br />0                                                                                                                                                                                                                                        |
| last\_four<br /><br />string<br /><br />Required    | Last four digits of the primary account number (PAN) of the card you want to locate.<br /><br />**Allowable Values:**<br /><br />4 chars                                                                                                                                                                                                                                                          |
| fields<br /><br />string<br /><br />Optional        | Comma-delimited list of fields to return (`field_1,field_2`, and so on). Leave blank to return all fields.<br /><br />**Allowable Values:**<br /><br />Comma-delimited list of fields, or blank                                                                                                                                                                                                   |
| sort\_by<br /><br />string<br /><br />Optional      | Use any field in the resource model, or one of the system fields `lastModifiedTime` or `createdTime`. Prefix the field name with a hyphen (`-`) to sort in descending order. Omit the hyphen to sort in ascending order.<br /><br />**Allowable Values:**<br /><br />`createdTime`, `lastModifiedTime`, or any field in the resource model<br /><br />**Default value:**<br />`-lastModifiedTime` |

<h3 id="_response_body_2">
  Response body
</h3>

| Fields                                                                                                                                | Description                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          |
| ------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| count<br /><br />integer<br /><br />Conditionally returned                                                                            | The number of resources retrieved.<br /><br />This field is returned if there are resources in your returned array.<br /><br />**Allowable Values:**<br /><br />1-10                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 |
| data<br /><br />array of objects<br /><br />Conditionally returned                                                                    | Array of card objects.<br /><br />Objects are returned as appropriate to your query.<br /><br />**Allowable Values:**<br /><br />Valid array of one or more card objects                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| data\[].**activation\_actions**<br /><br />object<br /><br />Conditionally returned                                                   | Defines actions to execute when the card is activated. The fields in this object are mutually exclusive.<br /><br />**Allowable Values:**<br /><br />`swap_digital_wallet_tokens_from_card_token`, `terminate_reissued_source_card`                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  |
| data\[].activation\_actions.**swap\_digital\_wallet\_tokens\_from\_card\_token**<br /><br />string<br /><br />Conditionally returned  | Moves all digital wallet tokens from the specified card to the new card.<br /><br />Not relevant when `reissue_pan_from_card_token` is set.<br /><br />Send a `GET` request to `/cards/user/{token}` to retrieve card tokens for a particular user.<br /><br />**Allowable Values:**<br /><br />1–36 chars<br /><br />Existing card token                                                                                                                                                                                                                                                                                                                                                                                                                            |
| data\[].activation\_actions.**terminate\_reissued\_source\_card**<br /><br />boolean<br /><br />Conditionally returned                | If you are reissuing a card, the source card is terminated by default. To prevent the source card from being terminated, set this field to `false`.<br /><br />Only relevant when `reissue_pan_from_card_token` is set.<br /><br />**Allowable Values:**<br /><br />`true`, `false`<br /><br />**Default value:**<br />`true`                                                                                                                                                                                                                                                                                                                                                                                                                                        |
| data\[].**barcode**<br /><br />string<br /><br />Returned                                                                             | Barcode printed on the card, expressed as numerals.<br /><br />**Allowable Values:**<br /><br />10-20 chars                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          |
| data\[].**bulk\_issuance\_token**<br /><br />string<br /><br />Conditionally returned                                                 | Unique identifier of the bulk card order.<br /><br />**Allowable Values:**<br /><br />1-36 chars                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     |
| data\[].**card\_product\_token**<br /><br />string<br /><br />Returned                                                                | Unique identifier of the card product.<br /><br />**Allowable Values:**<br /><br />1-36 chars                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        |
| data\[].**chip\_cvv\_number**<br /><br />string<br /><br />Conditionally returned                                                     | Three-digit card verification value (ICVV) stored on the chip of the card.<br /><br />**Allowable Values:**<br /><br />3 chars                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       |
| data\[].**contactless\_exemption\_counter**<br /><br />integer<br /><br />Conditionally returned                                      | Running count of the contactless transactions successfully completed since the last strong customer authentication (SCA) challenge was issued. You can limit the number of contactless transactions that can be performed without issuing an SCA challenge at the card product level.<br /><br />For more information about strong customer authentication, see <a href="/core-api/card-products/">Card Products</a>.<br /><br />**Allowable Values:**<br /><br />Any integer                                                                                                                                                                                                                                                                                        |
| data\[].**contactless\_exemption\_total\_amount**<br /><br />decimal<br /><br />Conditionally returned                                | Running total of the money spent in contactless transactions successfully completed since the last strong customer authentication (SCA) challenge was issued. You can limit the total amount that can be spent in contactless transactions without issuing an SCA challenge at the card product level.<br /><br />For more information about strong customer authentication, see <a href="/core-api/card-products/">Card Products</a>.<br /><br />**Allowable Values:**<br /><br />Any integer                                                                                                                                                                                                                                                                       |
| data\[].**contactless\_exemption\_transaction\_currency**<br /><br />string<br /><br />Conditionally returned                         | Indicates the currency type of the transaction.<br /><br />**Allowable Values:**<br /><br />Valid three-character <a href="https://www.iso.org/iso-4217-currency-codes.html" target="_blank" rel="noopener">ISO 4217 currency code</a>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               |
| data\[].**created\_time**<br /><br />datetime<br /><br />Returned                                                                     | Date and time when the resource was created, in UTC.<br /><br />**Allowable Values:**<br /><br />datetime<br /><br />**Format:**<br />yyyy-MM-ddThh:mm:ssZ                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           |
| data\[].**cvv\_number**<br /><br />string<br /><br />Conditionally returned                                                           | Three-digit card verification value (CVV2 or CVC2) printed on the card.<br /><br />**Allowable Values:**<br /><br />3 chars                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          |
| data\[].**expedite**<br /><br />boolean<br /><br />Conditionally returned                                                             | A value of `true` indicates that you requested expedited processing of the card from your card fulfillment provider.<br /><br />**Allowable Values:**<br /><br />`true`, `false`                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     |
| data\[].**expiration**<br /><br />string<br /><br />Returned                                                                          | Expiration date in `MMyy` format.<br /><br />**Allowable Values:**<br /><br />Format: MMyy                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           |
| data\[].**expiration\_time**<br /><br />datetime<br /><br />Returned                                                                  | Expiration date and time, in UTC.<br /><br />**Allowable Values:**<br /><br />datetime<br /><br />**Format:**<br />yyyy-MM-ddThh:mm:ssZ                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              |
| data\[].**fulfillment**<br /><br />object<br /><br />Conditionally returned                                                           | Determines physical characteristics of a card and shipment information.<br /><br />**Allowable Values:**<br /><br />`card_fulfillment_reason`, `card_personalization`, `shipping`                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    |
| data\[].fulfillment.**card\_fulfillment\_reason**<br /><br />string<br /><br />Conditionally returned                                 | Descriptive reason for the card fulfillment.<br /><br />**Allowable Values:**<br /><br />`NEW`, `LOST_STOLEN`, `EXPIRED`                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| data\[].fulfillment.**card\_personalization**<br /><br />object<br /><br />Returned                                                   | Specifies personalized attributes to be added to the card.<br /><br />**Allowable Values:**<br /><br />`carrier`, `images`, `perso_type`, `text`                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     |
| data\[].fulfillment.card\_personalization.**carrier**<br /><br />object<br /><br />Conditionally returned                             | Specifies attributes of the card carrier.<br /><br />**Allowable Values:**<br /><br />`logo_file`, `logo_thumbnail_file`, `message_file`, `message_line`, `template_id`                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              |
| data\[].fulfillment.card\_personalization.carrier.**logo\_file**<br /><br />string<br /><br />Conditionally returned                  | Specifies an image to display on the card carrier.<br /><br />**Allowable Values:**<br /><br />Contains the name of the image file and must match the name of the file you send to your fulfillment provider.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        |
| data\[].fulfillment.card\_personalization.carrier.**logo\_thumbnail\_file**<br /><br />string<br /><br />Conditionally returned       | Specifies a thumbnail-sized rendering of the image specified in the `logo_file` field.<br /><br />**Allowable Values:**<br /><br />Contains the name of the image file and must match the name of the file you send to your fulfillment provider.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    |
| data\[].fulfillment.card\_personalization.carrier.**message\_file**<br /><br />string<br /><br />Conditionally returned               | Specifies a text file containing a custom message to print on the card carrier.<br /><br />**Allowable Values:**<br /><br />Contains the name of the text file and must match the name of the file you send to your fulfillment provider.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            |
| data\[].fulfillment.card\_personalization.carrier.**message\_line**<br /><br />string<br /><br />Conditionally returned               | Specifies a custom message that appears on the card carrier.<br /><br />**Allowable Values:**<br /><br />60 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 |
| data\[].fulfillment.card\_personalization.carrier.**message\_line\_2**<br /><br />string<br /><br />Conditionally returned            | Specifies the second line of a custom message that appears on the card carrier.<br /><br />**Allowable Values:**<br /><br />60 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              |
| data\[].fulfillment.card\_personalization.carrier.**template\_id**<br /><br />string<br /><br />Conditionally returned                | Specifies the card carrier template to use.<br /><br />**Allowable Values:**<br /><br />Card carrier template ID                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     |
| data\[].fulfillment.card\_personalization.**images**<br /><br />object<br /><br />Conditionally returned                              | Specifies personalized images that appear on the card.<br /><br />**Allowable Values:**<br /><br />`card`, `carrier`, `carrier_return_window`, `signature`                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           |
| data\[].fulfillment.card\_personalization.images.**card**<br /><br />object<br /><br />Conditionally returned                         | Specifies personalized images that appear on the card.<br /><br />**Allowable Values:**<br /><br />`name`, `thermal_color`                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           |
| data\[].fulfillment.card\_personalization.images.card.**name**<br /><br />string<br /><br />Conditionally returned                    | Specifies a PNG image to display on the card.<br /><br />**Allowable Values:**<br /><br />Contains the name of the image file and must match the name of the file you send to your fulfillment provider.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| data\[].fulfillment.card\_personalization.images.card.**thermal\_color**<br /><br />string<br /><br />Conditionally returned          | Specifies the color of the image displayed on the card.<br /><br />**Allowable Values:**<br /><br />Contains the name of the color and must match one of the provider’s predefined colors.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           |
| data\[].fulfillment.card\_personalization.images.**carrier**<br /><br />object<br /><br />Conditionally returned                      | Specifies personalized images that appear on the card carrier.<br /><br />**Allowable Values:**<br /><br />`message_1`, `name`                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       |
| data\[].fulfillment.card\_personalization.images.carrier.**message\_1**<br /><br />string<br /><br />Conditionally returned           | Specifies a custom message that appears on the card carrier.<br /><br />**Allowable Values:**<br /><br />60 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 |
| data\[].fulfillment.card\_personalization.images.carrier.**name**<br /><br />string<br /><br />Conditionally returned                 | Specifies a PNG image to display on the card carrier.<br /><br />**Allowable Values:**<br /><br />Contains the name of the image file and must match the name of the file you send to your fulfillment provider.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     |
| data\[].fulfillment.card\_personalization.images.**carrier\_return\_window**<br /><br />object<br /><br />Conditionally returned      | Specifies a PNG image to display in the return address window of envelopes used for sending cards to cardholders.<br /><br />**Allowable Values:**<br /><br />`name`                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 |
| data\[].fulfillment.card\_personalization.images.carrier\_return\_window.**name**<br /><br />string<br /><br />Conditionally returned | Specifies a PNG image to display in the return address window of envelopes used for sending cards to cardholders.<br /><br />**Allowable Values:**<br /><br />Contains the name of the image file and must match the name of the file you send to your fulfillment provider.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         |
| data\[].fulfillment.card\_personalization.images.**signature**<br /><br />object<br /><br />Conditionally returned                    | Specifies a PNG image of the cardholder’s signature.<br /><br />**Allowable Values:**<br /><br />`name`                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              |
| data\[].fulfillment.card\_personalization.images.signature.**name**<br /><br />string<br /><br />Conditionally returned               | Specifies a PNG image of the cardholder’s signature.<br /><br />**Allowable Values:**<br /><br />Contains the name of the image file and must match the name of the file you send to your fulfillment provider.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      |
| data\[].fulfillment.card\_personalization.**perso\_type**<br /><br />string<br /><br />Conditionally returned                         | Specifies the type of card personalization.<br /><br />**Allowable Values:**<br /><br />`EMBOSS`, `LASER`, `FLAT`                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    |
| data\[].fulfillment.card\_personalization.**text**<br /><br />object<br /><br />Returned                                              | Specifies personalized text that appears on the card.<br /><br />**Allowable Values:**<br /><br />`name_line_1`, `name_line_2`, `name_line_3`                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        |
| data\[].fulfillment.card\_personalization.text.**name\_line\_1**<br /><br />object<br /><br />Returned                                | Specifies the first line of personalized text that appears on the card.<br /><br />**Allowable Values:**<br /><br />`name_line_1.value`<br /><br />21 char max; if `name_line_1_numeric_postfix` is `true`, 14 char max.<br /><br />Strings longer than the character limit are truncated.                                                                                                                                                                                                                                                                                                                                                                                                                                                                           |
| data\[].fulfillment.card\_personalization.text.name\_line\_1.**value**<br /><br />string<br /><br />Conditionally returned            | Line of personalized text printed on the card.<br /><br />**Allowable Values:**<br /><br />21 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               |
| data\[].fulfillment.card\_personalization.text.**name\_line\_2**<br /><br />object<br /><br />Conditionally returned                  | Specifies the second line of personalized text that appears on the card.<br /><br />**Allowable Values:**<br /><br />`name_line_2.value`                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| data\[].fulfillment.card\_personalization.text.name\_line\_2.**value**<br /><br />string<br /><br />Conditionally returned            | Line of personalized text printed on the card.<br /><br />**Allowable Values:**<br /><br />21 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               |
| data\[].fulfillment.card\_personalization.text.**name\_line\_3**<br /><br />object<br /><br />Conditionally returned                  | Specifies the third line of personalized text that appears on the card.<br /><br />**Allowable Values:**<br /><br />`name_line_3.value`                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              |
| data\[].fulfillment.card\_personalization.text.name\_line\_3.**value**<br /><br />string<br /><br />Conditionally returned            | Line of personalized text printed on the card.<br /><br />**Allowable Values:**<br /><br />21 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               |
| data\[].fulfillment.**shipping**<br /><br />object<br /><br />Conditionally returned                                                  | Specifies shipping details for the order.<br /><br />This object is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />`care_of_line`, `method`, `recipient_address`, `return_address`                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               |
| data\[].fulfillment.shipping.**care\_of\_line**<br /><br />string<br /><br />Conditionally returned                                   | Specifies the value of the care of (C/O) line on the mailing carrier.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       |
| data\[].fulfillment.shipping.**method**<br /><br />string<br /><br />Conditionally returned                                           | Specifies the shipping service.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />`LOCAL_MAIL`, `LOCAL_MAIL_PACKAGE`, `GROUND`, `TWO_DAY`, `OVERNIGHT`, `INTERNATIONAL`, `INTERNATIONAL_PRIORITY`, `LOCAL_PRIORITY`, `FEDEX_EXPEDITED`, `FEDEX_REGULAR`, `UPS_EXPEDITED`, `UPS_REGULAR`, `USPS_EXPEDITED`, `USPS_REGULAR`                                                                                                                                                                                                                                                                                                                                                                                  |
| data\[].fulfillment.shipping.**recipient\_address**<br /><br />object<br /><br />Conditionally returned                               | Address to which the order will be shipped.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />Existing `recipient_address` object                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          |
| data\[].fulfillment.shipping.recipient\_address.**address1**<br /><br />string<br /><br />Conditionally returned                      | Number and street of the address.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />255 char max<br /><br />Limits lower than 255 characters may be imposed by providers. Perfect Plastic Printing and IDEMIA have a limit of 100 characters, and Arroweye Solutions has a limit of 50 characters.                                                                                                                                                                                                                                                                                                                                                                                                         |
| data\[].fulfillment.shipping.recipient\_address.**address2**<br /><br />string<br /><br />Conditionally returned                      | Additional address information.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />255 char max<br /><br />Limits lower than 255 characters may be imposed by providers. Perfect Plastic Printing and IDEMIA have a limit of 100 characters, and Arroweye Solutions has a limit of 50 characters.                                                                                                                                                                                                                                                                                                                                                                                                           |
| data\[].fulfillment.shipping.recipient\_address.**city**<br /><br />string<br /><br />Conditionally returned                          | City of the address.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />40 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         |
| data\[].fulfillment.shipping.recipient\_address.**country**<br /><br />string<br /><br />Conditionally returned                       | Country of the address.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />40 char max<br /><br />English short name. For example, for the Kingdom of Spain, use the English short name "Spain". The ISO maintains the <a href="https://www.iso.org/obp/ui/#search/code/" target="_blank" rel="noopener">full list of country codes</a>.                                                                                                                                                                                                                                                                                                                                                                    |
| data\[].fulfillment.shipping.recipient\_address.**first\_name**<br /><br />string<br /><br />Conditionally returned                   | First name of the addressee.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />40 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 |
| data\[].fulfillment.shipping.recipient\_address.**last\_name**<br /><br />string<br /><br />Conditionally returned                    | Last name of the addressee.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />40 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  |
| data\[].fulfillment.shipping.recipient\_address.**middle\_name**<br /><br />string<br /><br />Conditionally returned                  | Middle name of the addressee.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />40 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                |
| data\[].fulfillment.shipping.recipient\_address.**phone**<br /><br />string<br /><br />Conditionally returned                         | Telephone number of the addressee.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />20 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           |
| data\[].fulfillment.shipping.recipient\_address.**postal\_code**<br /><br />string<br /><br />Conditionally returned                  | Postal code of the address.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />10 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  |
| data\[].fulfillment.shipping.recipient\_address.**state**<br /><br />string<br /><br />Conditionally returned                         | State or province of the address.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />32 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            |
| data\[].fulfillment.shipping.recipient\_address.**zip**<br /><br />string<br /><br />Conditionally returned                           | United States ZIP code of the address.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />10 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       |
| data\[].fulfillment.shipping.**return\_address**<br /><br />object<br /><br />Conditionally returned                                  | Address to which the order will be returned if shipping fails.<br /><br />This object is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />Existing `return_address` object                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         |
| data\[].fulfillment.shipping.return\_address.**address1**<br /><br />string<br /><br />Conditionally returned                         | Number and street of the address.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />255 char max<br /><br />Limits lower than 255 characters may be imposed by providers. Perfect Plastic Printing and IDEMIA have a limit of 100 characters, and Arroweye Solutions has a limit of 50 characters.                                                                                                                                                                                                                                                                                                                                                                                                         |
| data\[].fulfillment.shipping.return\_address.**address2**<br /><br />string<br /><br />Conditionally returned                         | Additional address information.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />255 char max<br /><br />Limits lower than 255 characters may be imposed by providers. Perfect Plastic Printing and IDEMIA have a limit of 100 characters, and Arroweye Solutions has a limit of 50 characters.                                                                                                                                                                                                                                                                                                                                                                                                           |
| data\[].fulfillment.shipping.return\_address.**city**<br /><br />string<br /><br />Conditionally returned                             | City of the address.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />40 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         |
| data\[].fulfillment.shipping.return\_address.**country**<br /><br />string<br /><br />Conditionally returned                          | Country of the address.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />40 char max<br /><br />English short name. For example, for the Kingdom of Spain, use the English short name "Spain". The ISO maintains the <a href="https://www.iso.org/obp/ui/#search/code/" target="_blank" rel="noopener">full list of country codes</a>.                                                                                                                                                                                                                                                                                                                                                                    |
| data\[].fulfillment.shipping.return\_address.**first\_name**<br /><br />string<br /><br />Conditionally returned                      | First name of the addressee.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />40 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 |
| data\[].fulfillment.shipping.return\_address.**last\_name**<br /><br />string<br /><br />Conditionally returned                       | Last name of the addressee.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />40 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  |
| data\[].fulfillment.shipping.return\_address.**middle\_name**<br /><br />string<br /><br />Conditionally returned                     | Middle name of the addressee.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />40 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                |
| data\[].fulfillment.shipping.return\_address.**phone**<br /><br />string<br /><br />Conditionally returned                            | Telephone number of the addressee.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />20 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           |
| data\[].fulfillment.shipping.return\_address.**postal\_code**<br /><br />string<br /><br />Conditionally returned                     | Postal code of the address.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />10 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  |
| data\[].fulfillment.shipping.return\_address.**state**<br /><br />string<br /><br />Conditionally returned                            | State or province of the address.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />32 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            |
| data\[].fulfillment.shipping.return\_address.**zip**<br /><br />string<br /><br />Conditionally returned                              | United States ZIP code of the address.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />10 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       |
| data\[].**fulfillment\_status**<br /><br />string<br /><br />Returned                                                                 | Card fulfillment status:<br /><br />- **ISSUED:** Initial state of all newly created/issued cards.<br />- **ORDERED:** Card ordered through the card fulfillment provider.<br />- **REORDERED:** Card reordered through the card fulfillment provider.<br />- **REJECTED:** Card rejected by the card fulfillment provider.<br />- **SHIPPED:** Card shipped by the card fulfillment provider.<br />- **DELIVERED:** Card delivered by the card fulfillment provider.<br />- **DIGITALLY\_PRESENTED:** Card digitally presented using the `/cards/{token}/showpan` endpoint; does not affect the delivery of physical cards.<br /><br />**Allowable Values:**<br /><br />`ISSUED`, `ORDERED`, `REORDERED`, `REJECTED`, `SHIPPED`, `DELIVERED`, `DIGITALLY_PRESENTED` |
| data\[].**instrument\_type**<br /><br />string<br /><br />Conditionally returned                                                      | Instrument type of the card:<br /><br />- **PHYSICAL\_MSR:** A physical card with a magnetic stripe. This is the default physical card type.<br />- **PHYSICAL\_ICC:** A physical card with an integrated circuit, or "chip."<br />- **PHYSICAL\_CONTACTLESS:** A physical card that uses radio frequency identification (RFID) or near-field communication (NFC) to enable payment over a secure radio interface.<br />- **PHYSICAL\_COMBO:** A physical card with a chip that also supports contactless payments.<br />- **VIRTUAL\_PAN:** A virtual card with a primary account number (PAN).<br /><br />**Allowable Values:**<br /><br />`PHYSICAL_MSR`, `PHYSICAL_ICC`, `PHYSICAL_CONTACTLESS`, `PHYSICAL_COMBO`, `VIRTUAL_PAN`                                 |
| data\[].**last\_four**<br /><br />string<br /><br />Returned                                                                          | Last four digits of the card primary account number (PAN).<br /><br />**Allowable Values:**<br /><br />4 chars                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       |
| data\[].**last\_modified\_time**<br /><br />datetime<br /><br />Returned                                                              | Date and time when the resource was last modified, in UTC.<br /><br />**Allowable Values:**<br /><br />datetime<br /><br />**Format:**<br />yyyy-MM-ddThh:mm:ssZ                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     |
| data\[].**metadata**<br /><br />object<br /><br />Conditionally returned                                                              | Associates customer-provided metadata with the card.<br /><br />**Allowable Values:**<br /><br />Contains the names and values of up to 20 fields in the format `"my_name_1": "my_value_1"`                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          |
| data\[].**pan**<br /><br />string<br /><br />Returned                                                                                 | Primary account number (PAN) of the card.<br /><br />**Allowable Values:**<br /><br />16 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    |
| data\[].**pin\_is\_set**<br /><br />boolean<br /><br />Returned                                                                       | Specifies if the personal identification number (PIN) has been set for the card.<br /><br />**Allowable Values:**<br /><br />4 chars                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 |
| data\[].**reissue\_pan\_from\_card\_token**<br /><br />string<br /><br />Conditionally returned                                       | Reissues the specified card (known as the "source" card).<br /><br />**Allowable Values:**<br /><br />Existing card token                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            |
| data\[].**new\_pan\_from\_card\_token**<br /><br />string<br /><br />Conditionally returned                                           | Reissues the specified card (known as the "source" card) with a new primary account number (PAN).<br /><br />**Allowable Values:**<br /><br />Existing card token                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    |
| data\[].**state**<br /><br />string<br /><br />Returned                                                                               | Indicates the state of the card.<br /><br />**Allowable Values:**<br /><br />`ACTIVE`, `SUSPENDED`, `TERMINATED`, `UNSUPPORTED`, `UNACTIVATED`, `LIMITED`                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            |
| data\[].**state\_reason**<br /><br />string<br /><br />Returned                                                                       | Descriptive reason for why the card is in its current state. For example, "Card activated by cardholder".<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   |
| data\[].**token**<br /><br />string<br /><br />Returned                                                                               | Unique identifier of the card.<br /><br />**Allowable Values:**<br /><br />Existing card token                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       |
| data\[].**translate\_pin\_from\_card\_token**<br /><br />string<br /><br />Conditionally returned                                     | Copies the personal identification number (PIN) from the specified source card to the newly created card.<br /><br />**Allowable Values:**<br /><br />Existing card token                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            |
| data\[].**user\_token**<br /><br />string<br /><br />Returned                                                                         | Unique identifier of the cardholder.<br /><br />**Allowable Values:**<br /><br />Existing user token                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 |
| end\_index<br /><br />integer<br /><br />Conditionally returned                                                                       | Sort order index of the last resource in the returned array.<br /><br />This field is returned if there are resources in your returned array.<br /><br />**Allowable Values:**<br /><br />Any integer                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                |
| is\_more<br /><br />boolean<br /><br />Conditionally returned                                                                         | A value of `true` indicates that more unreturned resources exist. A value of `false` indicates that no more unreturned resources exist.<br /><br />This field is returned if there are resources in your returned array.<br /><br />**Allowable Values:**<br /><br />`true`, `false`                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 |
| start\_index<br /><br />integer<br /><br />Conditionally returned                                                                     | Sort order index of the first resource in the returned array.<br /><br />This field is returned if there are resources in your returned array.<br /><br />**Allowable Values:**<br /><br />Any integer                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               |

<h3 id="_sample_response_body_2">
  Sample response body
</h3>

```json JSON expandable lines wrap theme={null}
{
  "count": 1,
  "start_index": 0,
  "end_index": 0,
  "is_more": false,
  "data": [
    {
      "created_time": "2022-02-08T18:31:23Z",
      "last_modified_time": "2022-02-14T19:32:38Z",
      "token": "my_user_01_card_02",
      "user_token": "my_user_01",
      "card_product_token": "my_cardproduct_01",
      "last_four": "1865",
      "pan": "1111111824981865",
      "expiration": "1225",
      "expiration_time": "2027-12-31T23:59:59Z",
      "barcode": "25815105237561780909",
      "pin_is_set": false,
      "state": "UNACTIVATED",
      "state_reason": "New card",
      "expedite": false,
      "fulfillment_status": "DIGITALLY_PRESENTED",
      "fulfillment": {
        "shipping": {
          "method": "FEDEX_REGULAR",
          "care_of_line": "my_care_of_value"
        },
        "card_personalization": {
          "text": {
            "name_line_1": {
              "value": "My card personalization line 1"
            },
            "name_line_2": {
              "value": "My card personalization line 2"
            }
          },
          "images": {
            "card": {
              "name": "my_card_logo.png",
              "thermal_color": "Black"
            },
            "signature": {
              "name": "my_signature.png"
            },
            "carrier_return_window": {
              "name": "my_return_address_image.png"
            }
          }
        }
      },
      "instrument_type": "PHYSICAL_MSR"
    }
  ]
}
```

<h2 id="get_cards_barcode_barcode">
  Retrieve card by barcode
</h2>

**Action:** `GET`\
**Endpoint:** `/cards/barcode/{barcode}`

{/* <EndpointCard
title="Returns a card's metadata"
path="/cards/barcode/{barcode}"
method="get"
/> */}

Retrieves a card by its barcode.

This endpoint supports [field filtering](/core-api/field-filtering/) and [object expansion](/core-api/object-expansion/).

<h3 id="_url_path_parameters">
  URL path parameters
</h3>

| Fields                                        | Description                                                                              |
| --------------------------------------------- | ---------------------------------------------------------------------------------------- |
| barcode<br /><br />string<br /><br />Required | Barcode of the card to retrieve.<br /><br />**Allowable Values:**<br /><br />10-20 chars |

<h3 id="_url_query_parameters_3">
  URL query parameters
</h3>

| Fields                                       | Description                                                                                                                                                                                     |
| -------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| fields<br /><br />string<br /><br />Optional | Comma-delimited list of fields to return (`field_1,field_2`, and so on). Leave blank to return all fields.<br /><br />**Allowable Values:**<br /><br />Comma-delimited list of fields, or blank |

<h3 id="_response_body_3">
  Response body
</h3>

| Fields                                                                                                                        | Description                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          |
| ----------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| activation\_actions<br /><br />object<br /><br />Conditionally returned                                                       | Defines actions to execute when the card is activated. The fields in this object are mutually exclusive.<br /><br />**Allowable Values:**<br /><br />`swap_digital_wallet_tokens_from_card_token`, `terminate_reissued_source_card`                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  |
| activation\_actions.**swap\_digital\_wallet\_tokens\_from\_card\_token**<br /><br />string<br /><br />Conditionally returned  | Moves all digital wallet tokens from the specified card to the new card.<br /><br />Not relevant when `reissue_pan_from_card_token` is set.<br /><br />Send a `GET` request to `/cards/user/{token}` to retrieve card tokens for a particular user.<br /><br />**Allowable Values:**<br /><br />1–36 chars<br /><br />Existing card token                                                                                                                                                                                                                                                                                                                                                                                                                            |
| activation\_actions.**terminate\_reissued\_source\_card**<br /><br />boolean<br /><br />Conditionally returned                | If you are reissuing a card, the source card is terminated by default. To prevent the source card from being terminated, set this field to `false`.<br /><br />Only relevant when `reissue_pan_from_card_token` is set.<br /><br />**Allowable Values:**<br /><br />`true`, `false`<br /><br />**Default value:**<br />`true`                                                                                                                                                                                                                                                                                                                                                                                                                                        |
| barcode<br /><br />string<br /><br />Returned                                                                                 | Barcode printed on the card, expressed as numerals.<br /><br />**Allowable Values:**<br /><br />10-20 chars                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          |
| bulk\_issuance\_token<br /><br />string<br /><br />Conditionally returned                                                     | Unique identifier of the bulk card order.<br /><br />**Allowable Values:**<br /><br />1-36 chars                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     |
| card\_product\_token<br /><br />string<br /><br />Returned                                                                    | Unique identifier of the card product.<br /><br />**Allowable Values:**<br /><br />1-36 chars                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        |
| chip\_cvv\_number<br /><br />string<br /><br />Conditionally returned                                                         | Three-digit card verification value (ICVV) stored on the chip of the card.<br /><br />**Allowable Values:**<br /><br />3 chars                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       |
| contactless\_exemption\_counter<br /><br />integer<br /><br />Conditionally returned                                          | Running count of the contactless transactions successfully completed since the last strong customer authentication (SCA) challenge was issued. You can limit the number of contactless transactions that can be performed without issuing an SCA challenge at the card product level.<br /><br />For more information about strong customer authentication, see <a href="/core-api/card-products/">Card Products</a>.<br /><br />**Allowable Values:**<br /><br />Any integer                                                                                                                                                                                                                                                                                        |
| contactless\_exemption\_total\_amount<br /><br />decimal<br /><br />Conditionally returned                                    | Running total of the money spent in contactless transactions successfully completed since the last strong customer authentication (SCA) challenge was issued. You can limit the total amount that can be spent in contactless transactions without issuing an SCA challenge at the card product level.<br /><br />For more information about strong customer authentication, see <a href="/core-api/card-products/">Card Products</a>.<br /><br />**Allowable Values:**<br /><br />Any integer                                                                                                                                                                                                                                                                       |
| contactless\_exemption\_transaction\_currency<br /><br />string<br /><br />Conditionally returned                             | Indicates the currency type of the transaction.<br /><br />**Allowable Values:**<br /><br />Valid three-character <a href="https://www.iso.org/iso-4217-currency-codes.html" target="_blank" rel="noopener">ISO 4217 currency code</a>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               |
| created\_time<br /><br />datetime<br /><br />Returned                                                                         | Date and time when the resource was created, in UTC.<br /><br />**Allowable Values:**<br /><br />datetime<br /><br />**Format:**<br />yyyy-MM-ddThh:mm:ssZ                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           |
| cvv\_number<br /><br />string<br /><br />Conditionally returned                                                               | Three-digit card verification value (CVV2 or CVC2) printed on the card.<br /><br />**Allowable Values:**<br /><br />3 chars                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          |
| expedite<br /><br />boolean<br /><br />Conditionally returned                                                                 | A value of `true` indicates that you requested expedited processing of the card from your card fulfillment provider.<br /><br />**Allowable Values:**<br /><br />`true`, `false`                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     |
| expiration<br /><br />string<br /><br />Returned                                                                              | Expiration date in `MMyy` format.<br /><br />**Allowable Values:**<br /><br />Format: MMyy                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           |
| expiration\_time<br /><br />datetime<br /><br />Returned                                                                      | Expiration date and time, in UTC.<br /><br />**Allowable Values:**<br /><br />datetime<br /><br />**Format:**<br />yyyy-MM-ddThh:mm:ssZ                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              |
| fulfillment<br /><br />object<br /><br />Conditionally returned                                                               | Determines physical characteristics of a card and shipment information.<br /><br />**Allowable Values:**<br /><br />`card_fulfillment_reason`, `card_personalization`, `shipping`                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    |
| fulfillment.**card\_fulfillment\_reason**<br /><br />string<br /><br />Conditionally returned                                 | Descriptive reason for the card fulfillment.<br /><br />**Allowable Values:**<br /><br />`NEW`, `LOST_STOLEN`, `EXPIRED`                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| fulfillment.**card\_personalization**<br /><br />object<br /><br />Returned                                                   | Specifies personalized attributes to be added to the card.<br /><br />**Allowable Values:**<br /><br />`carrier`, `images`, `perso_type`, `text`                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     |
| fulfillment.card\_personalization.**carrier**<br /><br />object<br /><br />Conditionally returned                             | Specifies attributes of the card carrier.<br /><br />**Allowable Values:**<br /><br />`logo_file`, `logo_thumbnail_file`, `message_file`, `message_line`, `template_id`                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              |
| fulfillment.card\_personalization.carrier.**logo\_file**<br /><br />string<br /><br />Conditionally returned                  | Specifies an image to display on the card carrier.<br /><br />**Allowable Values:**<br /><br />Contains the name of the image file and must match the name of the file you send to your fulfillment provider.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        |
| fulfillment.card\_personalization.carrier.**logo\_thumbnail\_file**<br /><br />string<br /><br />Conditionally returned       | Specifies a thumbnail-sized rendering of the image specified in the `logo_file` field.<br /><br />**Allowable Values:**<br /><br />Contains the name of the image file and must match the name of the file you send to your fulfillment provider.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    |
| fulfillment.card\_personalization.carrier.**message\_file**<br /><br />string<br /><br />Conditionally returned               | Specifies a text file containing a custom message to print on the card carrier.<br /><br />**Allowable Values:**<br /><br />Contains the name of the text file and must match the name of the file you send to your fulfillment provider.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            |
| fulfillment.card\_personalization.carrier.**message\_line**<br /><br />string<br /><br />Conditionally returned               | Specifies a custom message that appears on the card carrier.<br /><br />**Allowable Values:**<br /><br />60 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 |
| fulfillment.card\_personalization.carrier.**message\_line\_2**<br /><br />string<br /><br />Conditionally returned            | Specifies the second line of a custom message that appears on the card carrier.<br /><br />**Allowable Values:**<br /><br />60 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              |
| fulfillment.card\_personalization.carrier.**template\_id**<br /><br />string<br /><br />Conditionally returned                | Specifies the card carrier template to use.<br /><br />**Allowable Values:**<br /><br />Card carrier template ID                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     |
| fulfillment.card\_personalization.**images**<br /><br />object<br /><br />Conditionally returned                              | Specifies personalized images that appear on the card.<br /><br />**Allowable Values:**<br /><br />`card`, `carrier`, `carrier_return_window`, `signature`                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           |
| fulfillment.card\_personalization.images.**card**<br /><br />object<br /><br />Conditionally returned                         | Specifies personalized images that appear on the card.<br /><br />**Allowable Values:**<br /><br />`name`, `thermal_color`                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           |
| fulfillment.card\_personalization.images.card.**name**<br /><br />string<br /><br />Conditionally returned                    | Specifies a PNG image to display on the card.<br /><br />**Allowable Values:**<br /><br />Contains the name of the image file and must match the name of the file you send to your fulfillment provider.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| fulfillment.card\_personalization.images.card.**thermal\_color**<br /><br />string<br /><br />Conditionally returned          | Specifies the color of the image displayed on the card.<br /><br />**Allowable Values:**<br /><br />Contains the name of the color and must match one of the provider’s predefined colors.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           |
| fulfillment.card\_personalization.images.**carrier**<br /><br />object<br /><br />Conditionally returned                      | Specifies personalized images that appear on the card carrier.<br /><br />**Allowable Values:**<br /><br />`message_1`, `name`                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       |
| fulfillment.card\_personalization.images.carrier.**message\_1**<br /><br />string<br /><br />Conditionally returned           | Specifies a custom message that appears on the card carrier.<br /><br />**Allowable Values:**<br /><br />60 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 |
| fulfillment.card\_personalization.images.carrier.**name**<br /><br />string<br /><br />Conditionally returned                 | Specifies a PNG image to display on the card carrier.<br /><br />**Allowable Values:**<br /><br />Contains the name of the image file and must match the name of the file you send to your fulfillment provider.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     |
| fulfillment.card\_personalization.images.**carrier\_return\_window**<br /><br />object<br /><br />Conditionally returned      | Specifies a PNG image to display in the return address window of envelopes used for sending cards to cardholders.<br /><br />**Allowable Values:**<br /><br />`name`                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 |
| fulfillment.card\_personalization.images.carrier\_return\_window.**name**<br /><br />string<br /><br />Conditionally returned | Specifies a PNG image to display in the return address window of envelopes used for sending cards to cardholders.<br /><br />**Allowable Values:**<br /><br />Contains the name of the image file and must match the name of the file you send to your fulfillment provider.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         |
| fulfillment.card\_personalization.images.**signature**<br /><br />object<br /><br />Conditionally returned                    | Specifies a PNG image of the cardholder’s signature.<br /><br />**Allowable Values:**<br /><br />`name`                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              |
| fulfillment.card\_personalization.images.signature.**name**<br /><br />string<br /><br />Conditionally returned               | Specifies a PNG image of the cardholder’s signature.<br /><br />**Allowable Values:**<br /><br />Contains the name of the image file and must match the name of the file you send to your fulfillment provider.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      |
| fulfillment.card\_personalization.**perso\_type**<br /><br />string<br /><br />Conditionally returned                         | Specifies the type of card personalization.<br /><br />**Allowable Values:**<br /><br />`EMBOSS`, `LASER`, `FLAT`                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    |
| fulfillment.card\_personalization.**text**<br /><br />object<br /><br />Returned                                              | Specifies personalized text that appears on the card.<br /><br />**Allowable Values:**<br /><br />`name_line_1`, `name_line_2`, `name_line_3`                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        |
| fulfillment.card\_personalization.text.**name\_line\_1**<br /><br />object<br /><br />Returned                                | Specifies the first line of personalized text that appears on the card.<br /><br />**Allowable Values:**<br /><br />`name_line_1.value`<br /><br />21 char max; if `name_line_1_numeric_postfix` is `true`, 14 char max.<br /><br />Strings longer than the character limit are truncated.                                                                                                                                                                                                                                                                                                                                                                                                                                                                           |
| fulfillment.card\_personalization.text.name\_line\_1.**value**<br /><br />string<br /><br />Conditionally returned            | Line of personalized text printed on the card.<br /><br />**Allowable Values:**<br /><br />21 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               |
| fulfillment.card\_personalization.text.**name\_line\_2**<br /><br />object<br /><br />Conditionally returned                  | Specifies the second line of personalized text that appears on the card.<br /><br />**Allowable Values:**<br /><br />`name_line_2.value`                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| fulfillment.card\_personalization.text.name\_line\_2.**value**<br /><br />string<br /><br />Conditionally returned            | Line of personalized text printed on the card.<br /><br />**Allowable Values:**<br /><br />21 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               |
| fulfillment.card\_personalization.text.**name\_line\_3**<br /><br />object<br /><br />Conditionally returned                  | Specifies the third line of personalized text that appears on the card.<br /><br />**Allowable Values:**<br /><br />`name_line_3.value`                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              |
| fulfillment.card\_personalization.text.name\_line\_3.**value**<br /><br />string<br /><br />Conditionally returned            | Line of personalized text printed on the card.<br /><br />**Allowable Values:**<br /><br />21 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               |
| fulfillment.**shipping**<br /><br />object<br /><br />Conditionally returned                                                  | Specifies shipping details for the order.<br /><br />This object is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />`care_of_line`, `method`, `recipient_address`, `return_address`                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               |
| fulfillment.shipping.**care\_of\_line**<br /><br />string<br /><br />Conditionally returned                                   | Specifies the value of the care of (C/O) line on the mailing carrier.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       |
| fulfillment.shipping.**method**<br /><br />string<br /><br />Conditionally returned                                           | Specifies the shipping service.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />`LOCAL_MAIL`, `LOCAL_MAIL_PACKAGE`, `GROUND`, `TWO_DAY`, `OVERNIGHT`, `INTERNATIONAL`, `INTERNATIONAL_PRIORITY`, `LOCAL_PRIORITY`, `FEDEX_EXPEDITED`, `FEDEX_REGULAR`, `UPS_EXPEDITED`, `UPS_REGULAR`, `USPS_EXPEDITED`, `USPS_REGULAR`                                                                                                                                                                                                                                                                                                                                                                                  |
| fulfillment.shipping.**recipient\_address**<br /><br />object<br /><br />Conditionally returned                               | Address to which the order will be shipped.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />Existing `recipient_address` object                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          |
| fulfillment.shipping.recipient\_address.**address1**<br /><br />string<br /><br />Conditionally returned                      | Number and street of the address.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />255 char max<br /><br />Limits lower than 255 characters may be imposed by providers. Perfect Plastic Printing and IDEMIA have a limit of 100 characters, and Arroweye Solutions has a limit of 50 characters.                                                                                                                                                                                                                                                                                                                                                                                                         |
| fulfillment.shipping.recipient\_address.**address2**<br /><br />string<br /><br />Conditionally returned                      | Additional address information.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />255 char max<br /><br />Limits lower than 255 characters may be imposed by providers. Perfect Plastic Printing and IDEMIA have a limit of 100 characters, and Arroweye Solutions has a limit of 50 characters.                                                                                                                                                                                                                                                                                                                                                                                                           |
| fulfillment.shipping.recipient\_address.**city**<br /><br />string<br /><br />Conditionally returned                          | City of the address.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />40 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         |
| fulfillment.shipping.recipient\_address.**country**<br /><br />string<br /><br />Conditionally returned                       | Country of the address.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />40 char max<br /><br />English short name. For example, for the Kingdom of Spain, use the English short name "Spain". The ISO maintains the <a href="https://www.iso.org/obp/ui/#search/code/" target="_blank" rel="noopener">full list of country codes</a>.                                                                                                                                                                                                                                                                                                                                                                    |
| fulfillment.shipping.recipient\_address.**first\_name**<br /><br />string<br /><br />Conditionally returned                   | First name of the addressee.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />40 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 |
| fulfillment.shipping.recipient\_address.**last\_name**<br /><br />string<br /><br />Conditionally returned                    | Last name of the addressee.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />40 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  |
| fulfillment.shipping.recipient\_address.**middle\_name**<br /><br />string<br /><br />Conditionally returned                  | Middle name of the addressee.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />40 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                |
| fulfillment.shipping.recipient\_address.**phone**<br /><br />string<br /><br />Conditionally returned                         | Telephone number of the addressee.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />20 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           |
| fulfillment.shipping.recipient\_address.**postal\_code**<br /><br />string<br /><br />Conditionally returned                  | Postal code of the address.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />10 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  |
| fulfillment.shipping.recipient\_address.**state**<br /><br />string<br /><br />Conditionally returned                         | State or province of the address.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />32 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            |
| fulfillment.shipping.recipient\_address.**zip**<br /><br />string<br /><br />Conditionally returned                           | United States ZIP code of the address.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />10 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       |
| fulfillment.shipping.**return\_address**<br /><br />object<br /><br />Conditionally returned                                  | Address to which the order will be returned if shipping fails.<br /><br />This object is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />Existing `return_address` object                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         |
| fulfillment.shipping.return\_address.**address1**<br /><br />string<br /><br />Conditionally returned                         | Number and street of the address.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />255 char max<br /><br />Limits lower than 255 characters may be imposed by providers. Perfect Plastic Printing and IDEMIA have a limit of 100 characters, and Arroweye Solutions has a limit of 50 characters.                                                                                                                                                                                                                                                                                                                                                                                                         |
| fulfillment.shipping.return\_address.**address2**<br /><br />string<br /><br />Conditionally returned                         | Additional address information.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />255 char max<br /><br />Limits lower than 255 characters may be imposed by providers. Perfect Plastic Printing and IDEMIA have a limit of 100 characters, and Arroweye Solutions has a limit of 50 characters.                                                                                                                                                                                                                                                                                                                                                                                                           |
| fulfillment.shipping.return\_address.**city**<br /><br />string<br /><br />Conditionally returned                             | City of the address.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />40 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         |
| fulfillment.shipping.return\_address.**country**<br /><br />string<br /><br />Conditionally returned                          | Country of the address.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />40 char max<br /><br />English short name. For example, for the Kingdom of Spain, use the English short name "Spain". The ISO maintains the <a href="https://www.iso.org/obp/ui/#search/code/" target="_blank" rel="noopener">full list of country codes</a>.                                                                                                                                                                                                                                                                                                                                                                    |
| fulfillment.shipping.return\_address.**first\_name**<br /><br />string<br /><br />Conditionally returned                      | First name of the addressee.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />40 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 |
| fulfillment.shipping.return\_address.**last\_name**<br /><br />string<br /><br />Conditionally returned                       | Last name of the addressee.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />40 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  |
| fulfillment.shipping.return\_address.**middle\_name**<br /><br />string<br /><br />Conditionally returned                     | Middle name of the addressee.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />40 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                |
| fulfillment.shipping.return\_address.**phone**<br /><br />string<br /><br />Conditionally returned                            | Telephone number of the addressee.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />20 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           |
| fulfillment.shipping.return\_address.**postal\_code**<br /><br />string<br /><br />Conditionally returned                     | Postal code of the address.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />10 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  |
| fulfillment.shipping.return\_address.**state**<br /><br />string<br /><br />Conditionally returned                            | State or province of the address.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />32 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            |
| fulfillment.shipping.return\_address.**zip**<br /><br />string<br /><br />Conditionally returned                              | United States ZIP code of the address.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />10 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       |
| fulfillment\_status<br /><br />string<br /><br />Returned                                                                     | Card fulfillment status:<br /><br />- **ISSUED:** Initial state of all newly created/issued cards.<br />- **ORDERED:** Card ordered through the card fulfillment provider.<br />- **REORDERED:** Card reordered through the card fulfillment provider.<br />- **REJECTED:** Card rejected by the card fulfillment provider.<br />- **SHIPPED:** Card shipped by the card fulfillment provider.<br />- **DELIVERED:** Card delivered by the card fulfillment provider.<br />- **DIGITALLY\_PRESENTED:** Card digitally presented using the `/cards/{token}/showpan` endpoint; does not affect the delivery of physical cards.<br /><br />**Allowable Values:**<br /><br />`ISSUED`, `ORDERED`, `REORDERED`, `REJECTED`, `SHIPPED`, `DELIVERED`, `DIGITALLY_PRESENTED` |
| instrument\_type<br /><br />string<br /><br />Conditionally returned                                                          | Instrument type of the card:<br /><br />- **PHYSICAL\_MSR:** A physical card with a magnetic stripe. This is the default physical card type.<br />- **PHYSICAL\_ICC:** A physical card with an integrated circuit, or "chip."<br />- **PHYSICAL\_CONTACTLESS:** A physical card that uses radio frequency identification (RFID) or near-field communication (NFC) to enable payment over a secure radio interface.<br />- **PHYSICAL\_COMBO:** A physical card with a chip that also supports contactless payments.<br />- **VIRTUAL\_PAN:** A virtual card with a primary account number (PAN).<br /><br />**Allowable Values:**<br /><br />`PHYSICAL_MSR`, `PHYSICAL_ICC`, `PHYSICAL_CONTACTLESS`, `PHYSICAL_COMBO`, `VIRTUAL_PAN`                                 |
| last\_four<br /><br />string<br /><br />Returned                                                                              | Last four digits of the card primary account number (PAN).<br /><br />**Allowable Values:**<br /><br />4 chars                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       |
| last\_modified\_time<br /><br />datetime<br /><br />Returned                                                                  | Date and time when the resource was last modified, in UTC.<br /><br />**Allowable Values:**<br /><br />datetime<br /><br />**Format:**<br />yyyy-MM-ddThh:mm:ssZ                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     |
| metadata<br /><br />object<br /><br />Conditionally returned                                                                  | Associates customer-provided metadata with the card.<br /><br />**Allowable Values:**<br /><br />Contains the names and values of up to 20 fields in the format `"my_name_1": "my_value_1"`                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          |
| pan<br /><br />string<br /><br />Returned                                                                                     | Primary account number (PAN) of the card.<br /><br />**Allowable Values:**<br /><br />16 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    |
| pin\_is\_set<br /><br />boolean<br /><br />Returned                                                                           | Specifies if the personal identification number (PIN) has been set for the card.<br /><br />**Allowable Values:**<br /><br />4 chars                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 |
| reissue\_pan\_from\_card\_token<br /><br />string<br /><br />Conditionally returned                                           | Reissues the specified card (known as the "source" card).<br /><br />**Allowable Values:**<br /><br />Existing card token                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            |
| new\_pan\_from\_card\_token<br /><br />string<br /><br />Conditionally returned                                               | Reissues the specified card (known as the "source" card) with a new primary account number (PAN).<br /><br />**Allowable Values:**<br /><br />Existing card token                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    |
| state<br /><br />string<br /><br />Returned                                                                                   | Indicates the state of the card.<br /><br />**Allowable Values:**<br /><br />`ACTIVE`, `SUSPENDED`, `TERMINATED`, `UNSUPPORTED`, `UNACTIVATED`, `LIMITED`                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            |
| state\_reason<br /><br />string<br /><br />Returned                                                                           | Descriptive reason for why the card is in its current state. For example, "Card activated by cardholder".<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   |
| token<br /><br />string<br /><br />Returned                                                                                   | Unique identifier of the card.<br /><br />**Allowable Values:**<br /><br />Existing card token                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       |
| translate\_pin\_from\_card\_token<br /><br />string<br /><br />Conditionally returned                                         | Copies the personal identification number (PIN) from the specified source card to the newly created card.<br /><br />**Allowable Values:**<br /><br />Existing card token                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            |
| user\_token<br /><br />string<br /><br />Returned                                                                             | Unique identifier of the cardholder.<br /><br />**Allowable Values:**<br /><br />Existing user token                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 |

<h3 id="_sample_response_body_3">
  Sample response body
</h3>

```json JSON lines wrap theme={null}
{
  "token": "my_card",
  "pan": "5454545454545454",
  "expiration": "0216",
  "barcode": "780672318863",
  "state": "ACTIVE",
  "state_reason": "New card activated",
  "user_token": "my_user_01",
  "card_product_token": "my_cardproduct_01",
  "last_four": "5454",
  "expiration_time": "2027-02-28T23:59:59Z",
  "pin_is_set": false,
  "expedite": false,
  "fulfillment_status": "SHIPPED",
  "instrument_type": "PHYSICAL_MSR",
  "created_time": "2022-02-28T18:31:23Z",
  "last_modified_time": "2022-02-28T18:41:00Z"
}
```

<h2 id="post_cards_getbypan">
  Retrieve card by PAN
</h2>

**Action:** `POST`\
**Endpoint:** `/cards/getbypan`

{/* <EndpointCard
title="Returns user and card tokens for the specified PAN"
path="/cards/getbypan"
method="post"
/> */}

Retrieves the `user_token` and `card_token` for a primary account number (PAN). In the case of a reissued card, where multiple cards share the same PAN, the information for the most recently issued card is returned.

This request is useful in IVR scenarios where a user has telephoned and identifies the card by the PAN. The retrieval of these tokens is implemented as a `POST` request because supplying the PAN in the request body is more secure than supplying it in the URL (as would be required with a `GET`).

<Danger>
  **Warning**\
  Sending a request to this endpoint requires PCI DSS compliance. You must comply with PCI DSS data security requirements if you want to store, transmit, or process sensitive card data such as the cardholder’s primary account number (PAN), personal identification number (PIN), and card expiration date.
</Danger>

<h3 id="_request_body_2">
  Request body
</h3>

| Fields                                            | Description                                                                                                                                                                                                                                   |
| ------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| cvv\_number<br /><br />string<br /><br />Optional | Three-digit card verification value (CVV2) included on the back of the card.<br /><br />This value cannot be updated.<br /><br />**Allowable Values:**<br /><br />3 char max                                                                  |
| expiration<br /><br />string<br /><br />Optional  | Card expiration date.<br /><br />**Allowable Values:**<br /><br />Format: MMyy                                                                                                                                                                |
| pan<br /><br />string<br /><br />Required         | Primary account number (PAN) of the card whose information you want to retrieve.<br /><br />Send a `GET` request to `/cards/{token}/showpan` to retrieve the PAN for a specific card.<br /><br />**Allowable Values:**<br /><br />16 char max |

<h3 id="_sample_request_body_2">
  Sample request body
</h3>

```json JSON lines wrap theme={null}
{
  "pan": "5454545454545454"
}
```

<h3 id="_response_body_4">
  Response body
</h3>

| Fields                                                       | Description                                                                                                                                                      |
| ------------------------------------------------------------ | ---------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| card\_token<br /><br />string<br /><br />Returned            | Unique identifier of the card.<br /><br />**Allowable Values:**<br /><br />Existing card token                                                                   |
| created\_time<br /><br />datetime<br /><br />Returned        | Date and time when the resource was created, in UTC.<br /><br />**Allowable Values:**<br /><br />datetime<br /><br />**Format:**<br />yyyy-MM-ddThh:mm:ssZ       |
| last\_modified\_time<br /><br />datetime<br /><br />Returned | Date and time when the resource was last modified, in UTC.<br /><br />**Allowable Values:**<br /><br />datetime<br /><br />**Format:**<br />yyyy-MM-ddThh:mm:ssZ |
| user\_token<br /><br />string<br /><br />Returned            | Unique identifier of the cardholder.<br /><br />**Allowable Values:**<br /><br />Existing user token                                                             |

<h3 id="_sample_response_body_4">
  Sample response body
</h3>

```json JSON lines wrap theme={null}
{
  "user_token": "my_user",
  "card_token": "my_card1",
  "created_time": "2022-02-26T20:03:15Z",
  "last_modified_time": "2022-02-26T20:05:20Z"
}
```

<h2 id="get_cards_user_token">
  List cards for user
</h2>

**Action:** `GET`\
**Endpoint:** `/cards/user/{token}`

{/* <EndpointCard
title="Lists all cards for a specific user"
path="/cards/user/{token}"
method="get"
/> */}

Retrieves a list of the cards associated with a specific user.

This endpoint supports [field filtering,](/core-api/field-filtering/) [pagination](/core-api/sorting-and-pagination/), and [object expansion](/core-api/object-expansion/).

<h3 id="_url_path_parameters_2">
  URL path parameters
</h3>

| Fields                                      | Description                                                                                                                                                                           |
| ------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| token<br /><br />string<br /><br />Required | Unique identifier of the user whose cards you want to list. Send a `GET` request to `/users` to retrieve user tokens.<br /><br />**Allowable Values:**<br /><br />Existing user token |

<h3 id="_url_query_parameters_4">
  URL query parameters
</h3>

| Fields                                              | Description                                                                                                                                                                                                                                                                                                                                                                                       |
| --------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| count<br /><br />integer<br /><br />Optional        | Number of resources to retrieve.<br /><br />**Allowable Values:**<br /><br />1-10<br /><br />**Default value:**<br />5                                                                                                                                                                                                                                                                            |
| start\_index<br /><br />integer<br /><br />Optional | Sort order index of the first resource in the returned array.<br /><br />**Allowable Values:**<br /><br />Any integer<br /><br />**Default value:**<br />0                                                                                                                                                                                                                                        |
| fields<br /><br />string<br /><br />Optional        | Comma-delimited list of fields to return (`field_1,field_2`, and so on). Leave blank to return all fields.<br /><br />**Allowable Values:**<br /><br />Comma-delimited list of fields, or blank                                                                                                                                                                                                   |
| sort\_by<br /><br />string<br /><br />Optional      | Use any field in the resource model, or one of the system fields `lastModifiedTime` or `createdTime`. Prefix the field name with a hyphen (`-`) to sort in descending order. Omit the hyphen to sort in ascending order.<br /><br />**Allowable Values:**<br /><br />`createdTime`, `lastModifiedTime`, or any field in the resource model<br /><br />**Default value:**<br />`-lastModifiedTime` |

<h3 id="_response_body_5">
  Response body
</h3>

| Fields                                                                                                                                | Description                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          |
| ------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| count<br /><br />integer<br /><br />Conditionally returned                                                                            | The number of resources retrieved.<br /><br />This field is returned if there are resources in your returned array.<br /><br />**Allowable Values:**<br /><br />1-10                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 |
| data<br /><br />array of objects<br /><br />Conditionally returned                                                                    | Array of card objects.<br /><br />Objects are returned as appropriate to your query.<br /><br />**Allowable Values:**<br /><br />Valid array of one or more card objects                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| data\[].**activation\_actions**<br /><br />object<br /><br />Conditionally returned                                                   | Defines actions to execute when the card is activated. The fields in this object are mutually exclusive.<br /><br />**Allowable Values:**<br /><br />`swap_digital_wallet_tokens_from_card_token`, `terminate_reissued_source_card`                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  |
| data\[].activation\_actions.**swap\_digital\_wallet\_tokens\_from\_card\_token**<br /><br />string<br /><br />Conditionally returned  | Moves all digital wallet tokens from the specified card to the new card.<br /><br />Not relevant when `reissue_pan_from_card_token` is set.<br /><br />Send a `GET` request to `/cards/user/{token}` to retrieve card tokens for a particular user.<br /><br />**Allowable Values:**<br /><br />1–36 chars<br /><br />Existing card token                                                                                                                                                                                                                                                                                                                                                                                                                            |
| data\[].activation\_actions.**terminate\_reissued\_source\_card**<br /><br />boolean<br /><br />Conditionally returned                | If you are reissuing a card, the source card is terminated by default. To prevent the source card from being terminated, set this field to `false`.<br /><br />Only relevant when `reissue_pan_from_card_token` is set.<br /><br />**Allowable Values:**<br /><br />`true`, `false`<br /><br />**Default value:**<br />`true`                                                                                                                                                                                                                                                                                                                                                                                                                                        |
| data\[].**barcode**<br /><br />string<br /><br />Returned                                                                             | Barcode printed on the card, expressed as numerals.<br /><br />**Allowable Values:**<br /><br />10-20 chars                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          |
| data\[].**bulk\_issuance\_token**<br /><br />string<br /><br />Conditionally returned                                                 | Unique identifier of the bulk card order.<br /><br />**Allowable Values:**<br /><br />1-36 chars                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     |
| data\[].**card\_product\_token**<br /><br />string<br /><br />Returned                                                                | Unique identifier of the card product.<br /><br />**Allowable Values:**<br /><br />1-36 chars                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        |
| data\[].**chip\_cvv\_number**<br /><br />string<br /><br />Conditionally returned                                                     | Three-digit card verification value (ICVV) stored on the chip of the card.<br /><br />**Allowable Values:**<br /><br />3 chars                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       |
| data\[].**contactless\_exemption\_counter**<br /><br />integer<br /><br />Conditionally returned                                      | Running count of the contactless transactions successfully completed since the last strong customer authentication (SCA) challenge was issued. You can limit the number of contactless transactions that can be performed without issuing an SCA challenge at the card product level.<br /><br />For more information about strong customer authentication, see <a href="/core-api/card-products/">Card Products</a>.<br /><br />**Allowable Values:**<br /><br />Any integer                                                                                                                                                                                                                                                                                        |
| data\[].**contactless\_exemption\_total\_amount**<br /><br />decimal<br /><br />Conditionally returned                                | Running total of the money spent in contactless transactions successfully completed since the last strong customer authentication (SCA) challenge was issued. You can limit the total amount that can be spent in contactless transactions without issuing an SCA challenge at the card product level.<br /><br />For more information about strong customer authentication, see <a href="/core-api/card-products/">Card Products</a>.<br /><br />**Allowable Values:**<br /><br />Any integer                                                                                                                                                                                                                                                                       |
| data\[].**contactless\_exemption\_transaction\_currency**<br /><br />string<br /><br />Conditionally returned                         | Indicates the currency type of the transaction.<br /><br />**Allowable Values:**<br /><br />Valid three-character <a href="https://www.iso.org/iso-4217-currency-codes.html" target="_blank" rel="noopener">ISO 4217 currency code</a>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               |
| data\[].**created\_time**<br /><br />datetime<br /><br />Returned                                                                     | Date and time when the resource was created, in UTC.<br /><br />**Allowable Values:**<br /><br />datetime<br /><br />**Format:**<br />yyyy-MM-ddThh:mm:ssZ                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           |
| data\[].**cvv\_number**<br /><br />string<br /><br />Conditionally returned                                                           | Three-digit card verification value (CVV2 or CVC2) printed on the card.<br /><br />**Allowable Values:**<br /><br />3 chars                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          |
| data\[].**expedite**<br /><br />boolean<br /><br />Conditionally returned                                                             | A value of `true` indicates that you requested expedited processing of the card from your card fulfillment provider.<br /><br />**Allowable Values:**<br /><br />`true`, `false`                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     |
| data\[].**expiration**<br /><br />string<br /><br />Returned                                                                          | Expiration date in `MMyy` format.<br /><br />**Allowable Values:**<br /><br />Format: MMyy                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           |
| data\[].**expiration\_time**<br /><br />datetime<br /><br />Returned                                                                  | Expiration date and time, in UTC.<br /><br />**Allowable Values:**<br /><br />datetime<br /><br />**Format:**<br />yyyy-MM-ddThh:mm:ssZ                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              |
| data\[].**fulfillment**<br /><br />object<br /><br />Conditionally returned                                                           | Determines physical characteristics of a card and shipment information.<br /><br />**Allowable Values:**<br /><br />`card_fulfillment_reason`, `card_personalization`, `shipping`                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    |
| data\[].fulfillment.**card\_fulfillment\_reason**<br /><br />string<br /><br />Conditionally returned                                 | Descriptive reason for the card fulfillment.<br /><br />**Allowable Values:**<br /><br />`NEW`, `LOST_STOLEN`, `EXPIRED`                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| data\[].fulfillment.**card\_personalization**<br /><br />object<br /><br />Returned                                                   | Specifies personalized attributes to be added to the card.<br /><br />**Allowable Values:**<br /><br />`carrier`, `images`, `perso_type`, `text`                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     |
| data\[].fulfillment.card\_personalization.**carrier**<br /><br />object<br /><br />Conditionally returned                             | Specifies attributes of the card carrier.<br /><br />**Allowable Values:**<br /><br />`logo_file`, `logo_thumbnail_file`, `message_file`, `message_line`, `template_id`                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              |
| data\[].fulfillment.card\_personalization.carrier.**logo\_file**<br /><br />string<br /><br />Conditionally returned                  | Specifies an image to display on the card carrier.<br /><br />**Allowable Values:**<br /><br />Contains the name of the image file and must match the name of the file you send to your fulfillment provider.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        |
| data\[].fulfillment.card\_personalization.carrier.**logo\_thumbnail\_file**<br /><br />string<br /><br />Conditionally returned       | Specifies a thumbnail-sized rendering of the image specified in the `logo_file` field.<br /><br />**Allowable Values:**<br /><br />Contains the name of the image file and must match the name of the file you send to your fulfillment provider.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    |
| data\[].fulfillment.card\_personalization.carrier.**message\_file**<br /><br />string<br /><br />Conditionally returned               | Specifies a text file containing a custom message to print on the card carrier.<br /><br />**Allowable Values:**<br /><br />Contains the name of the text file and must match the name of the file you send to your fulfillment provider.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            |
| data\[].fulfillment.card\_personalization.carrier.**message\_line**<br /><br />string<br /><br />Conditionally returned               | Specifies a custom message that appears on the card carrier.<br /><br />**Allowable Values:**<br /><br />60 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 |
| data\[].fulfillment.card\_personalization.carrier.**message\_line\_2**<br /><br />string<br /><br />Conditionally returned            | Specifies the second line of a custom message that appears on the card carrier.<br /><br />**Allowable Values:**<br /><br />60 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              |
| data\[].fulfillment.card\_personalization.carrier.**template\_id**<br /><br />string<br /><br />Conditionally returned                | Specifies the card carrier template to use.<br /><br />**Allowable Values:**<br /><br />Card carrier template ID                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     |
| data\[].fulfillment.card\_personalization.**images**<br /><br />object<br /><br />Conditionally returned                              | Specifies personalized images that appear on the card.<br /><br />**Allowable Values:**<br /><br />`card`, `carrier`, `carrier_return_window`, `signature`                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           |
| data\[].fulfillment.card\_personalization.images.**card**<br /><br />object<br /><br />Conditionally returned                         | Specifies personalized images that appear on the card.<br /><br />**Allowable Values:**<br /><br />`name`, `thermal_color`                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           |
| data\[].fulfillment.card\_personalization.images.card.**name**<br /><br />string<br /><br />Conditionally returned                    | Specifies a PNG image to display on the card.<br /><br />**Allowable Values:**<br /><br />Contains the name of the image file and must match the name of the file you send to your fulfillment provider.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| data\[].fulfillment.card\_personalization.images.card.**thermal\_color**<br /><br />string<br /><br />Conditionally returned          | Specifies the color of the image displayed on the card.<br /><br />**Allowable Values:**<br /><br />Contains the name of the color and must match one of the provider’s predefined colors.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           |
| data\[].fulfillment.card\_personalization.images.**carrier**<br /><br />object<br /><br />Conditionally returned                      | Specifies personalized images that appear on the card carrier.<br /><br />**Allowable Values:**<br /><br />`message_1`, `name`                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       |
| data\[].fulfillment.card\_personalization.images.carrier.**message\_1**<br /><br />string<br /><br />Conditionally returned           | Specifies a custom message that appears on the card carrier.<br /><br />**Allowable Values:**<br /><br />60 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 |
| data\[].fulfillment.card\_personalization.images.carrier.**name**<br /><br />string<br /><br />Conditionally returned                 | Specifies a PNG image to display on the card carrier.<br /><br />**Allowable Values:**<br /><br />Contains the name of the image file and must match the name of the file you send to your fulfillment provider.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     |
| data\[].fulfillment.card\_personalization.images.**carrier\_return\_window**<br /><br />object<br /><br />Conditionally returned      | Specifies a PNG image to display in the return address window of envelopes used for sending cards to cardholders.<br /><br />**Allowable Values:**<br /><br />`name`                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 |
| data\[].fulfillment.card\_personalization.images.carrier\_return\_window.**name**<br /><br />string<br /><br />Conditionally returned | Specifies a PNG image to display in the return address window of envelopes used for sending cards to cardholders.<br /><br />**Allowable Values:**<br /><br />Contains the name of the image file and must match the name of the file you send to your fulfillment provider.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         |
| data\[].fulfillment.card\_personalization.images.**signature**<br /><br />object<br /><br />Conditionally returned                    | Specifies a PNG image of the cardholder’s signature.<br /><br />**Allowable Values:**<br /><br />`name`                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              |
| data\[].fulfillment.card\_personalization.images.signature.**name**<br /><br />string<br /><br />Conditionally returned               | Specifies a PNG image of the cardholder’s signature.<br /><br />**Allowable Values:**<br /><br />Contains the name of the image file and must match the name of the file you send to your fulfillment provider.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      |
| data\[].fulfillment.card\_personalization.**perso\_type**<br /><br />string<br /><br />Conditionally returned                         | Specifies the type of card personalization.<br /><br />**Allowable Values:**<br /><br />`EMBOSS`, `LASER`, `FLAT`                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    |
| data\[].fulfillment.card\_personalization.**text**<br /><br />object<br /><br />Returned                                              | Specifies personalized text that appears on the card.<br /><br />**Allowable Values:**<br /><br />`name_line_1`, `name_line_2`, `name_line_3`                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        |
| data\[].fulfillment.card\_personalization.text.**name\_line\_1**<br /><br />object<br /><br />Returned                                | Specifies the first line of personalized text that appears on the card.<br /><br />**Allowable Values:**<br /><br />`name_line_1.value`<br /><br />21 char max; if `name_line_1_numeric_postfix` is `true`, 14 char max.<br /><br />Strings longer than the character limit are truncated.                                                                                                                                                                                                                                                                                                                                                                                                                                                                           |
| data\[].fulfillment.card\_personalization.text.name\_line\_1.**value**<br /><br />string<br /><br />Conditionally returned            | Line of personalized text printed on the card.<br /><br />**Allowable Values:**<br /><br />21 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               |
| data\[].fulfillment.card\_personalization.text.**name\_line\_2**<br /><br />object<br /><br />Conditionally returned                  | Specifies the second line of personalized text that appears on the card.<br /><br />**Allowable Values:**<br /><br />`name_line_2.value`                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| data\[].fulfillment.card\_personalization.text.name\_line\_2.**value**<br /><br />string<br /><br />Conditionally returned            | Line of personalized text printed on the card.<br /><br />**Allowable Values:**<br /><br />21 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               |
| data\[].fulfillment.card\_personalization.text.**name\_line\_3**<br /><br />object<br /><br />Conditionally returned                  | Specifies the third line of personalized text that appears on the card.<br /><br />**Allowable Values:**<br /><br />`name_line_3.value`                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              |
| data\[].fulfillment.card\_personalization.text.name\_line\_3.**value**<br /><br />string<br /><br />Conditionally returned            | Line of personalized text printed on the card.<br /><br />**Allowable Values:**<br /><br />21 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               |
| data\[].fulfillment.**shipping**<br /><br />object<br /><br />Conditionally returned                                                  | Specifies shipping details for the order.<br /><br />This object is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />`care_of_line`, `method`, `recipient_address`, `return_address`                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               |
| data\[].fulfillment.shipping.**care\_of\_line**<br /><br />string<br /><br />Conditionally returned                                   | Specifies the value of the care of (C/O) line on the mailing carrier.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       |
| data\[].fulfillment.shipping.**method**<br /><br />string<br /><br />Conditionally returned                                           | Specifies the shipping service.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />`LOCAL_MAIL`, `LOCAL_MAIL_PACKAGE`, `GROUND`, `TWO_DAY`, `OVERNIGHT`, `INTERNATIONAL`, `INTERNATIONAL_PRIORITY`, `LOCAL_PRIORITY`, `FEDEX_EXPEDITED`, `FEDEX_REGULAR`, `UPS_EXPEDITED`, `UPS_REGULAR`, `USPS_EXPEDITED`, `USPS_REGULAR`                                                                                                                                                                                                                                                                                                                                                                                  |
| data\[].fulfillment.shipping.**recipient\_address**<br /><br />object<br /><br />Conditionally returned                               | Address to which the order will be shipped.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />Existing `recipient_address` object                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          |
| data\[].fulfillment.shipping.recipient\_address.**address1**<br /><br />string<br /><br />Conditionally returned                      | Number and street of the address.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />255 char max<br /><br />Limits lower than 255 characters may be imposed by providers. Perfect Plastic Printing and IDEMIA have a limit of 100 characters, and Arroweye Solutions has a limit of 50 characters.                                                                                                                                                                                                                                                                                                                                                                                                         |
| data\[].fulfillment.shipping.recipient\_address.**address2**<br /><br />string<br /><br />Conditionally returned                      | Additional address information.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />255 char max<br /><br />Limits lower than 255 characters may be imposed by providers. Perfect Plastic Printing and IDEMIA have a limit of 100 characters, and Arroweye Solutions has a limit of 50 characters.                                                                                                                                                                                                                                                                                                                                                                                                           |
| data\[].fulfillment.shipping.recipient\_address.**city**<br /><br />string<br /><br />Conditionally returned                          | City of the address.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />40 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         |
| data\[].fulfillment.shipping.recipient\_address.**country**<br /><br />string<br /><br />Conditionally returned                       | Country of the address.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />40 char max<br /><br />English short name. For example, for the Kingdom of Spain, use the English short name "Spain". The ISO maintains the <a href="https://www.iso.org/obp/ui/#search/code/" target="_blank" rel="noopener">full list of country codes</a>.                                                                                                                                                                                                                                                                                                                                                                    |
| data\[].fulfillment.shipping.recipient\_address.**first\_name**<br /><br />string<br /><br />Conditionally returned                   | First name of the addressee.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />40 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 |
| data\[].fulfillment.shipping.recipient\_address.**last\_name**<br /><br />string<br /><br />Conditionally returned                    | Last name of the addressee.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />40 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  |
| data\[].fulfillment.shipping.recipient\_address.**middle\_name**<br /><br />string<br /><br />Conditionally returned                  | Middle name of the addressee.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />40 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                |
| data\[].fulfillment.shipping.recipient\_address.**phone**<br /><br />string<br /><br />Conditionally returned                         | Telephone number of the addressee.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />20 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           |
| data\[].fulfillment.shipping.recipient\_address.**postal\_code**<br /><br />string<br /><br />Conditionally returned                  | Postal code of the address.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />10 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  |
| data\[].fulfillment.shipping.recipient\_address.**state**<br /><br />string<br /><br />Conditionally returned                         | State or province of the address.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />32 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            |
| data\[].fulfillment.shipping.recipient\_address.**zip**<br /><br />string<br /><br />Conditionally returned                           | United States ZIP code of the address.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />10 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       |
| data\[].fulfillment.shipping.**return\_address**<br /><br />object<br /><br />Conditionally returned                                  | Address to which the order will be returned if shipping fails.<br /><br />This object is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />Existing `return_address` object                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         |
| data\[].fulfillment.shipping.return\_address.**address1**<br /><br />string<br /><br />Conditionally returned                         | Number and street of the address.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />255 char max<br /><br />Limits lower than 255 characters may be imposed by providers. Perfect Plastic Printing and IDEMIA have a limit of 100 characters, and Arroweye Solutions has a limit of 50 characters.                                                                                                                                                                                                                                                                                                                                                                                                         |
| data\[].fulfillment.shipping.return\_address.**address2**<br /><br />string<br /><br />Conditionally returned                         | Additional address information.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />255 char max<br /><br />Limits lower than 255 characters may be imposed by providers. Perfect Plastic Printing and IDEMIA have a limit of 100 characters, and Arroweye Solutions has a limit of 50 characters.                                                                                                                                                                                                                                                                                                                                                                                                           |
| data\[].fulfillment.shipping.return\_address.**city**<br /><br />string<br /><br />Conditionally returned                             | City of the address.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />40 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         |
| data\[].fulfillment.shipping.return\_address.**country**<br /><br />string<br /><br />Conditionally returned                          | Country of the address.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />40 char max<br /><br />English short name. For example, for the Kingdom of Spain, use the English short name "Spain". The ISO maintains the <a href="https://www.iso.org/obp/ui/#search/code/" target="_blank" rel="noopener">full list of country codes</a>.                                                                                                                                                                                                                                                                                                                                                                    |
| data\[].fulfillment.shipping.return\_address.**first\_name**<br /><br />string<br /><br />Conditionally returned                      | First name of the addressee.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />40 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 |
| data\[].fulfillment.shipping.return\_address.**last\_name**<br /><br />string<br /><br />Conditionally returned                       | Last name of the addressee.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />40 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  |
| data\[].fulfillment.shipping.return\_address.**middle\_name**<br /><br />string<br /><br />Conditionally returned                     | Middle name of the addressee.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />40 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                |
| data\[].fulfillment.shipping.return\_address.**phone**<br /><br />string<br /><br />Conditionally returned                            | Telephone number of the addressee.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />20 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           |
| data\[].fulfillment.shipping.return\_address.**postal\_code**<br /><br />string<br /><br />Conditionally returned                     | Postal code of the address.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />10 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  |
| data\[].fulfillment.shipping.return\_address.**state**<br /><br />string<br /><br />Conditionally returned                            | State or province of the address.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />32 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            |
| data\[].fulfillment.shipping.return\_address.**zip**<br /><br />string<br /><br />Conditionally returned                              | United States ZIP code of the address.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />10 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       |
| data\[].**fulfillment\_status**<br /><br />string<br /><br />Returned                                                                 | Card fulfillment status:<br /><br />- **ISSUED:** Initial state of all newly created/issued cards.<br />- **ORDERED:** Card ordered through the card fulfillment provider.<br />- **REORDERED:** Card reordered through the card fulfillment provider.<br />- **REJECTED:** Card rejected by the card fulfillment provider.<br />- **SHIPPED:** Card shipped by the card fulfillment provider.<br />- **DELIVERED:** Card delivered by the card fulfillment provider.<br />- **DIGITALLY\_PRESENTED:** Card digitally presented using the `/cards/{token}/showpan` endpoint; does not affect the delivery of physical cards.<br /><br />**Allowable Values:**<br /><br />`ISSUED`, `ORDERED`, `REORDERED`, `REJECTED`, `SHIPPED`, `DELIVERED`, `DIGITALLY_PRESENTED` |
| data\[].**instrument\_type**<br /><br />string<br /><br />Conditionally returned                                                      | Instrument type of the card:<br /><br />- **PHYSICAL\_MSR:** A physical card with a magnetic stripe. This is the default physical card type.<br />- **PHYSICAL\_ICC:** A physical card with an integrated circuit, or "chip."<br />- **PHYSICAL\_CONTACTLESS:** A physical card that uses radio frequency identification (RFID) or near-field communication (NFC) to enable payment over a secure radio interface.<br />- **PHYSICAL\_COMBO:** A physical card with a chip that also supports contactless payments.<br />- **VIRTUAL\_PAN:** A virtual card with a primary account number (PAN).<br /><br />**Allowable Values:**<br /><br />`PHYSICAL_MSR`, `PHYSICAL_ICC`, `PHYSICAL_CONTACTLESS`, `PHYSICAL_COMBO`, `VIRTUAL_PAN`                                 |
| data\[].**last\_four**<br /><br />string<br /><br />Returned                                                                          | Last four digits of the card primary account number (PAN).<br /><br />**Allowable Values:**<br /><br />4 chars                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       |
| data\[].**last\_modified\_time**<br /><br />datetime<br /><br />Returned                                                              | Date and time when the resource was last modified, in UTC.<br /><br />**Allowable Values:**<br /><br />datetime<br /><br />**Format:**<br />yyyy-MM-ddThh:mm:ssZ                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     |
| data\[].**metadata**<br /><br />object<br /><br />Conditionally returned                                                              | Associates customer-provided metadata with the card.<br /><br />**Allowable Values:**<br /><br />Contains the names and values of up to 20 fields in the format `"my_name_1": "my_value_1"`                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          |
| data\[].**pan**<br /><br />string<br /><br />Returned                                                                                 | Primary account number (PAN) of the card.<br /><br />**Allowable Values:**<br /><br />16 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    |
| data\[].**pin\_is\_set**<br /><br />boolean<br /><br />Returned                                                                       | Specifies if the personal identification number (PIN) has been set for the card.<br /><br />**Allowable Values:**<br /><br />4 chars                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 |
| data\[].**reissue\_pan\_from\_card\_token**<br /><br />string<br /><br />Conditionally returned                                       | Reissues the specified card (known as the "source" card).<br /><br />**Allowable Values:**<br /><br />Existing card token                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            |
| data\[].**new\_pan\_from\_card\_token**<br /><br />string<br /><br />Conditionally returned                                           | Reissues the specified card (known as the "source" card) with a new primary account number (PAN).<br /><br />**Allowable Values:**<br /><br />Existing card token                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    |
| data\[].**state**<br /><br />string<br /><br />Returned                                                                               | Indicates the state of the card.<br /><br />**Allowable Values:**<br /><br />`ACTIVE`, `SUSPENDED`, `TERMINATED`, `UNSUPPORTED`, `UNACTIVATED`, `LIMITED`                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            |
| data\[].**state\_reason**<br /><br />string<br /><br />Returned                                                                       | Descriptive reason for why the card is in its current state. For example, "Card activated by cardholder".<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   |
| data\[].**token**<br /><br />string<br /><br />Returned                                                                               | Unique identifier of the card.<br /><br />**Allowable Values:**<br /><br />Existing card token                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       |
| data\[].**translate\_pin\_from\_card\_token**<br /><br />string<br /><br />Conditionally returned                                     | Copies the personal identification number (PIN) from the specified source card to the newly created card.<br /><br />**Allowable Values:**<br /><br />Existing card token                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            |
| data\[].**user\_token**<br /><br />string<br /><br />Returned                                                                         | Unique identifier of the cardholder.<br /><br />**Allowable Values:**<br /><br />Existing user token                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 |
| end\_index<br /><br />integer<br /><br />Conditionally returned                                                                       | Sort order index of the last resource in the returned array.<br /><br />This field is returned if there are resources in your returned array.<br /><br />**Allowable Values:**<br /><br />Any integer                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                |
| is\_more<br /><br />boolean<br /><br />Conditionally returned                                                                         | A value of `true` indicates that more unreturned resources exist. A value of `false` indicates that no more unreturned resources exist.<br /><br />This field is returned if there are resources in your returned array.<br /><br />**Allowable Values:**<br /><br />`true`, `false`                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 |
| start\_index<br /><br />integer<br /><br />Conditionally returned                                                                     | Sort order index of the first resource in the returned array.<br /><br />This field is returned if there are resources in your returned array.<br /><br />**Allowable Values:**<br /><br />Any integer                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               |

<h3 id="_sample_response_body_5">
  Sample response body
</h3>

```json JSON expandable lines wrap theme={null}
{
  "count": 3,
  "start_index": 0,
  "end_index": 2,
  "is_more": false,
  "data": [
    {
      "created_time": "2022-02-24T21:23:31Z",
      "last_modified_time": "2022-02-26T19:55:09Z",
      "token": "my_user_01_card_01",
      "user_token": "my_user_01",
      "card_product_token": "my_cardproduct_01",
      "last_four": "2160",
      "pan": "1111115454542160",
      "expiration": "1026",
      "expiration_time": "2027-10-31T23:59:59Z",
      "barcode": "11379418395311581864",
      "pin_is_set": false,
      "state": "SUSPENDED",
      "state_reason": "I do not want to use this card, so suspend it.",
      "expedite": false,
      "fulfillment_status": "ISSUED",
      "instrument_type": "PHYSICAL_MSR"
    },
    {
      "created_time": "2021-12-28T18:31:23Z",
      "last_modified_time": "2021-12-28T18:36:23Z",
      "token": "my_user_01_card_02",
      "user_token": "my_user_01",
      "card_product_token": "my_cardproduct_01",
      "last_four": "1865",
      "pan": "1111111824981865",
      "expiration": "1220",
      "expiration_time": "2026-12-31T23:59:59Z",
      "barcode": "25815105237561780909",
      "pin_is_set": false,
      "state": "UNACTIVATED",
      "state_reason": "New card",
      "expedite": false,
      "fulfillment_status": "ISSUED",
      "fulfillment": {
        "shipping": {
          "method": "FEDEX_REGULAR",
          "care_of_line": "my_care_of_value"
        },
        "card_personalization": {
          "text": {
            "name_line_1": {
              "value": "My card personalization line 1"
            },
            "name_line_2": {
              "value": "My card personalization line 2"
            }
          },
          "images": {
            "card": {
              "name": "my_card_logo.png",
              "thermal_color": "Black"
            },
            "signature": {
              "name": "my_signature.png"
            },
            "carrier_return_window": {
              "name": "my_return_address_image.png"
            }
          }
        }
      },
      "instrument_type": "PHYSICAL_MSR"
    },
    {
      "created_time": "2021-11-03T21:55:08Z",
      "last_modified_time": "2021-11-03T21:55:08Z",
      "token": "my_user-01-child_01_card_01",
      "user_token": "my_user-01-child_01",
      "card_product_token": "my_cardproduct_01",
      "last_four": "2810",
      "pan": "1111115454542810",
      "expiration": "1126",
      "expiration_time": "2026-11-30T23:59:59Z",
      "barcode": "63143403984499099324",
      "pin_is_set": false,
      "state": "UNACTIVATED",
      "state_reason": "New card",
      "expedite": false,
      "fulfillment_status": "ISSUED",
      "instrument_type": "PHYSICAL_MSR"
    }
  ]
}
```

<h2 id="get_cards_token">
  Retrieve card
</h2>

**Action:** `GET`\
**Endpoint:** `/cards/{token}`

{/* <EndpointCard
title="Returns a specific card"
path="/cards/{token}"
method="get"
/> */}

Retrieves a specific card.

This endpoint supports [field filtering](/core-api/field-filtering/) and [object expansion](/core-api/object-expansion/).

<h3 id="_url_path_parameters_3">
  URL path parameters
</h3>

| Fields                                      | Description                                                                                                         |
| ------------------------------------------- | ------------------------------------------------------------------------------------------------------------------- |
| token<br /><br />string<br /><br />Required | Unique identifier of the card you want to retrieve.<br /><br />**Allowable Values:**<br /><br />Existing card token |

<h3 id="_url_query_parameters_5">
  URL query parameters
</h3>

| Fields                                       | Description                                                                                                                                                                                     |
| -------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| fields<br /><br />string<br /><br />Optional | Comma-delimited list of fields to return (`field_1,field_2`, and so on). Leave blank to return all fields.<br /><br />**Allowable Values:**<br /><br />Comma-delimited list of fields, or blank |
| expand<br /><br />string<br /><br />Optional | Embeds the associated object of the specified type into the response, for all `GET /cards` endpoints.<br /><br />**Allowable Values:**<br /><br />`user`, `cardproduct`                         |

<h3 id="_response_body_6">
  Response body
</h3>

| Fields                                                                                                                        | Description                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          |
| ----------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| activation\_actions<br /><br />object<br /><br />Conditionally returned                                                       | Defines actions to execute when the card is activated. The fields in this object are mutually exclusive.<br /><br />**Allowable Values:**<br /><br />`swap_digital_wallet_tokens_from_card_token`, `terminate_reissued_source_card`                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  |
| activation\_actions.**swap\_digital\_wallet\_tokens\_from\_card\_token**<br /><br />string<br /><br />Conditionally returned  | Moves all digital wallet tokens from the specified card to the new card.<br /><br />Not relevant when `reissue_pan_from_card_token` is set.<br /><br />Send a `GET` request to `/cards/user/{token}` to retrieve card tokens for a particular user.<br /><br />**Allowable Values:**<br /><br />1–36 chars<br /><br />Existing card token                                                                                                                                                                                                                                                                                                                                                                                                                            |
| activation\_actions.**terminate\_reissued\_source\_card**<br /><br />boolean<br /><br />Conditionally returned                | If you are reissuing a card, the source card is terminated by default. To prevent the source card from being terminated, set this field to `false`.<br /><br />Only relevant when `reissue_pan_from_card_token` is set.<br /><br />**Allowable Values:**<br /><br />`true`, `false`<br /><br />**Default value:**<br />`true`                                                                                                                                                                                                                                                                                                                                                                                                                                        |
| barcode<br /><br />string<br /><br />Returned                                                                                 | Barcode printed on the card, expressed as numerals.<br /><br />**Allowable Values:**<br /><br />10-20 chars                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          |
| bulk\_issuance\_token<br /><br />string<br /><br />Conditionally returned                                                     | Unique identifier of the bulk card order.<br /><br />**Allowable Values:**<br /><br />1-36 chars                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     |
| card\_product\_token<br /><br />string<br /><br />Returned                                                                    | Unique identifier of the card product.<br /><br />**Allowable Values:**<br /><br />1-36 chars                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        |
| chip\_cvv\_number<br /><br />string<br /><br />Conditionally returned                                                         | Three-digit card verification value (ICVV) stored on the chip of the card.<br /><br />**Allowable Values:**<br /><br />3 chars                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       |
| contactless\_exemption\_counter<br /><br />integer<br /><br />Conditionally returned                                          | Running count of the contactless transactions successfully completed since the last strong customer authentication (SCA) challenge was issued. You can limit the number of contactless transactions that can be performed without issuing an SCA challenge at the card product level.<br /><br />For more information about strong customer authentication, see <a href="/core-api/card-products/">Card Products</a>.<br /><br />**Allowable Values:**<br /><br />Any integer                                                                                                                                                                                                                                                                                        |
| contactless\_exemption\_total\_amount<br /><br />decimal<br /><br />Conditionally returned                                    | Running total of the money spent in contactless transactions successfully completed since the last strong customer authentication (SCA) challenge was issued. You can limit the total amount that can be spent in contactless transactions without issuing an SCA challenge at the card product level.<br /><br />For more information about strong customer authentication, see <a href="/core-api/card-products/">Card Products</a>.<br /><br />**Allowable Values:**<br /><br />Any integer                                                                                                                                                                                                                                                                       |
| contactless\_exemption\_transaction\_currency<br /><br />string<br /><br />Conditionally returned                             | Indicates the currency type of the transaction.<br /><br />**Allowable Values:**<br /><br />Valid three-character <a href="https://www.iso.org/iso-4217-currency-codes.html" target="_blank" rel="noopener">ISO 4217 currency code</a>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               |
| created\_time<br /><br />datetime<br /><br />Returned                                                                         | Date and time when the resource was created, in UTC.<br /><br />**Allowable Values:**<br /><br />datetime<br /><br />**Format:**<br />yyyy-MM-ddThh:mm:ssZ                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           |
| cvv\_number<br /><br />string<br /><br />Conditionally returned                                                               | Three-digit card verification value (CVV2 or CVC2) printed on the card.<br /><br />**Allowable Values:**<br /><br />3 chars                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          |
| expedite<br /><br />boolean<br /><br />Conditionally returned                                                                 | A value of `true` indicates that you requested expedited processing of the card from your card fulfillment provider.<br /><br />**Allowable Values:**<br /><br />`true`, `false`                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     |
| expiration<br /><br />string<br /><br />Returned                                                                              | Expiration date in `MMyy` format.<br /><br />**Allowable Values:**<br /><br />Format: MMyy                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           |
| expiration\_time<br /><br />datetime<br /><br />Returned                                                                      | Expiration date and time, in UTC.<br /><br />**Allowable Values:**<br /><br />datetime<br /><br />**Format:**<br />yyyy-MM-ddThh:mm:ssZ                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              |
| fulfillment<br /><br />object<br /><br />Conditionally returned                                                               | Determines physical characteristics of a card and shipment information.<br /><br />**Allowable Values:**<br /><br />`card_fulfillment_reason`, `card_personalization`, `shipping`                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    |
| fulfillment.**card\_fulfillment\_reason**<br /><br />string<br /><br />Conditionally returned                                 | Descriptive reason for the card fulfillment.<br /><br />**Allowable Values:**<br /><br />`NEW`, `LOST_STOLEN`, `EXPIRED`                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| fulfillment.**card\_personalization**<br /><br />object<br /><br />Returned                                                   | Specifies personalized attributes to be added to the card.<br /><br />**Allowable Values:**<br /><br />`carrier`, `images`, `perso_type`, `text`                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     |
| fulfillment.card\_personalization.**carrier**<br /><br />object<br /><br />Conditionally returned                             | Specifies attributes of the card carrier.<br /><br />**Allowable Values:**<br /><br />`logo_file`, `logo_thumbnail_file`, `message_file`, `message_line`, `template_id`                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              |
| fulfillment.card\_personalization.carrier.**logo\_file**<br /><br />string<br /><br />Conditionally returned                  | Specifies an image to display on the card carrier.<br /><br />**Allowable Values:**<br /><br />Contains the name of the image file and must match the name of the file you send to your fulfillment provider.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        |
| fulfillment.card\_personalization.carrier.**logo\_thumbnail\_file**<br /><br />string<br /><br />Conditionally returned       | Specifies a thumbnail-sized rendering of the image specified in the `logo_file` field.<br /><br />**Allowable Values:**<br /><br />Contains the name of the image file and must match the name of the file you send to your fulfillment provider.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    |
| fulfillment.card\_personalization.carrier.**message\_file**<br /><br />string<br /><br />Conditionally returned               | Specifies a text file containing a custom message to print on the card carrier.<br /><br />**Allowable Values:**<br /><br />Contains the name of the text file and must match the name of the file you send to your fulfillment provider.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            |
| fulfillment.card\_personalization.carrier.**message\_line**<br /><br />string<br /><br />Conditionally returned               | Specifies a custom message that appears on the card carrier.<br /><br />**Allowable Values:**<br /><br />60 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 |
| fulfillment.card\_personalization.carrier.**message\_line\_2**<br /><br />string<br /><br />Conditionally returned            | Specifies the second line of a custom message that appears on the card carrier.<br /><br />**Allowable Values:**<br /><br />60 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              |
| fulfillment.card\_personalization.carrier.**template\_id**<br /><br />string<br /><br />Conditionally returned                | Specifies the card carrier template to use.<br /><br />**Allowable Values:**<br /><br />Card carrier template ID                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     |
| fulfillment.card\_personalization.**images**<br /><br />object<br /><br />Conditionally returned                              | Specifies personalized images that appear on the card.<br /><br />**Allowable Values:**<br /><br />`card`, `carrier`, `carrier_return_window`, `signature`                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           |
| fulfillment.card\_personalization.images.**card**<br /><br />object<br /><br />Conditionally returned                         | Specifies personalized images that appear on the card.<br /><br />**Allowable Values:**<br /><br />`name`, `thermal_color`                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           |
| fulfillment.card\_personalization.images.card.**name**<br /><br />string<br /><br />Conditionally returned                    | Specifies a PNG image to display on the card.<br /><br />**Allowable Values:**<br /><br />Contains the name of the image file and must match the name of the file you send to your fulfillment provider.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| fulfillment.card\_personalization.images.card.**thermal\_color**<br /><br />string<br /><br />Conditionally returned          | Specifies the color of the image displayed on the card.<br /><br />**Allowable Values:**<br /><br />Contains the name of the color and must match one of the provider’s predefined colors.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           |
| fulfillment.card\_personalization.images.**carrier**<br /><br />object<br /><br />Conditionally returned                      | Specifies personalized images that appear on the card carrier.<br /><br />**Allowable Values:**<br /><br />`message_1`, `name`                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       |
| fulfillment.card\_personalization.images.carrier.**message\_1**<br /><br />string<br /><br />Conditionally returned           | Specifies a custom message that appears on the card carrier.<br /><br />**Allowable Values:**<br /><br />60 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 |
| fulfillment.card\_personalization.images.carrier.**name**<br /><br />string<br /><br />Conditionally returned                 | Specifies a PNG image to display on the card carrier.<br /><br />**Allowable Values:**<br /><br />Contains the name of the image file and must match the name of the file you send to your fulfillment provider.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     |
| fulfillment.card\_personalization.images.**carrier\_return\_window**<br /><br />object<br /><br />Conditionally returned      | Specifies a PNG image to display in the return address window of envelopes used for sending cards to cardholders.<br /><br />**Allowable Values:**<br /><br />`name`                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 |
| fulfillment.card\_personalization.images.carrier\_return\_window.**name**<br /><br />string<br /><br />Conditionally returned | Specifies a PNG image to display in the return address window of envelopes used for sending cards to cardholders.<br /><br />**Allowable Values:**<br /><br />Contains the name of the image file and must match the name of the file you send to your fulfillment provider.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         |
| fulfillment.card\_personalization.images.**signature**<br /><br />object<br /><br />Conditionally returned                    | Specifies a PNG image of the cardholder’s signature.<br /><br />**Allowable Values:**<br /><br />`name`                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              |
| fulfillment.card\_personalization.images.signature.**name**<br /><br />string<br /><br />Conditionally returned               | Specifies a PNG image of the cardholder’s signature.<br /><br />**Allowable Values:**<br /><br />Contains the name of the image file and must match the name of the file you send to your fulfillment provider.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      |
| fulfillment.card\_personalization.**perso\_type**<br /><br />string<br /><br />Conditionally returned                         | Specifies the type of card personalization.<br /><br />**Allowable Values:**<br /><br />`EMBOSS`, `LASER`, `FLAT`                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    |
| fulfillment.card\_personalization.**text**<br /><br />object<br /><br />Returned                                              | Specifies personalized text that appears on the card.<br /><br />**Allowable Values:**<br /><br />`name_line_1`, `name_line_2`, `name_line_3`                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        |
| fulfillment.card\_personalization.text.**name\_line\_1**<br /><br />object<br /><br />Returned                                | Specifies the first line of personalized text that appears on the card.<br /><br />**Allowable Values:**<br /><br />`name_line_1.value`<br /><br />21 char max; if `name_line_1_numeric_postfix` is `true`, 14 char max.<br /><br />Strings longer than the character limit are truncated.                                                                                                                                                                                                                                                                                                                                                                                                                                                                           |
| fulfillment.card\_personalization.text.name\_line\_1.**value**<br /><br />string<br /><br />Conditionally returned            | Line of personalized text printed on the card.<br /><br />**Allowable Values:**<br /><br />21 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               |
| fulfillment.card\_personalization.text.**name\_line\_2**<br /><br />object<br /><br />Conditionally returned                  | Specifies the second line of personalized text that appears on the card.<br /><br />**Allowable Values:**<br /><br />`name_line_2.value`                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| fulfillment.card\_personalization.text.name\_line\_2.**value**<br /><br />string<br /><br />Conditionally returned            | Line of personalized text printed on the card.<br /><br />**Allowable Values:**<br /><br />21 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               |
| fulfillment.card\_personalization.text.**name\_line\_3**<br /><br />object<br /><br />Conditionally returned                  | Specifies the third line of personalized text that appears on the card.<br /><br />**Allowable Values:**<br /><br />`name_line_3.value`                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              |
| fulfillment.card\_personalization.text.name\_line\_3.**value**<br /><br />string<br /><br />Conditionally returned            | Line of personalized text printed on the card.<br /><br />**Allowable Values:**<br /><br />21 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               |
| fulfillment.**shipping**<br /><br />object<br /><br />Conditionally returned                                                  | Specifies shipping details for the order.<br /><br />This object is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />`care_of_line`, `method`, `recipient_address`, `return_address`                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               |
| fulfillment.shipping.**care\_of\_line**<br /><br />string<br /><br />Conditionally returned                                   | Specifies the value of the care of (C/O) line on the mailing carrier.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       |
| fulfillment.shipping.**method**<br /><br />string<br /><br />Conditionally returned                                           | Specifies the shipping service.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />`LOCAL_MAIL`, `LOCAL_MAIL_PACKAGE`, `GROUND`, `TWO_DAY`, `OVERNIGHT`, `INTERNATIONAL`, `INTERNATIONAL_PRIORITY`, `LOCAL_PRIORITY`, `FEDEX_EXPEDITED`, `FEDEX_REGULAR`, `UPS_EXPEDITED`, `UPS_REGULAR`, `USPS_EXPEDITED`, `USPS_REGULAR`                                                                                                                                                                                                                                                                                                                                                                                  |
| fulfillment.shipping.**recipient\_address**<br /><br />object<br /><br />Conditionally returned                               | Address to which the order will be shipped.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />Existing `recipient_address` object                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          |
| fulfillment.shipping.recipient\_address.**address1**<br /><br />string<br /><br />Conditionally returned                      | Number and street of the address.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />255 char max<br /><br />Limits lower than 255 characters may be imposed by providers. Perfect Plastic Printing and IDEMIA have a limit of 100 characters, and Arroweye Solutions has a limit of 50 characters.                                                                                                                                                                                                                                                                                                                                                                                                         |
| fulfillment.shipping.recipient\_address.**address2**<br /><br />string<br /><br />Conditionally returned                      | Additional address information.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />255 char max<br /><br />Limits lower than 255 characters may be imposed by providers. Perfect Plastic Printing and IDEMIA have a limit of 100 characters, and Arroweye Solutions has a limit of 50 characters.                                                                                                                                                                                                                                                                                                                                                                                                           |
| fulfillment.shipping.recipient\_address.**city**<br /><br />string<br /><br />Conditionally returned                          | City of the address.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />40 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         |
| fulfillment.shipping.recipient\_address.**country**<br /><br />string<br /><br />Conditionally returned                       | Country of the address.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />40 char max<br /><br />English short name. For example, for the Kingdom of Spain, use the English short name "Spain". The ISO maintains the <a href="https://www.iso.org/obp/ui/#search/code/" target="_blank" rel="noopener">full list of country codes</a>.                                                                                                                                                                                                                                                                                                                                                                    |
| fulfillment.shipping.recipient\_address.**first\_name**<br /><br />string<br /><br />Conditionally returned                   | First name of the addressee.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />40 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 |
| fulfillment.shipping.recipient\_address.**last\_name**<br /><br />string<br /><br />Conditionally returned                    | Last name of the addressee.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />40 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  |
| fulfillment.shipping.recipient\_address.**middle\_name**<br /><br />string<br /><br />Conditionally returned                  | Middle name of the addressee.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />40 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                |
| fulfillment.shipping.recipient\_address.**phone**<br /><br />string<br /><br />Conditionally returned                         | Telephone number of the addressee.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />20 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           |
| fulfillment.shipping.recipient\_address.**postal\_code**<br /><br />string<br /><br />Conditionally returned                  | Postal code of the address.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />10 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  |
| fulfillment.shipping.recipient\_address.**state**<br /><br />string<br /><br />Conditionally returned                         | State or province of the address.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />32 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            |
| fulfillment.shipping.recipient\_address.**zip**<br /><br />string<br /><br />Conditionally returned                           | United States ZIP code of the address.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />10 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       |
| fulfillment.shipping.**return\_address**<br /><br />object<br /><br />Conditionally returned                                  | Address to which the order will be returned if shipping fails.<br /><br />This object is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />Existing `return_address` object                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         |
| fulfillment.shipping.return\_address.**address1**<br /><br />string<br /><br />Conditionally returned                         | Number and street of the address.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />255 char max<br /><br />Limits lower than 255 characters may be imposed by providers. Perfect Plastic Printing and IDEMIA have a limit of 100 characters, and Arroweye Solutions has a limit of 50 characters.                                                                                                                                                                                                                                                                                                                                                                                                         |
| fulfillment.shipping.return\_address.**address2**<br /><br />string<br /><br />Conditionally returned                         | Additional address information.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />255 char max<br /><br />Limits lower than 255 characters may be imposed by providers. Perfect Plastic Printing and IDEMIA have a limit of 100 characters, and Arroweye Solutions has a limit of 50 characters.                                                                                                                                                                                                                                                                                                                                                                                                           |
| fulfillment.shipping.return\_address.**city**<br /><br />string<br /><br />Conditionally returned                             | City of the address.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />40 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         |
| fulfillment.shipping.return\_address.**country**<br /><br />string<br /><br />Conditionally returned                          | Country of the address.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />40 char max<br /><br />English short name. For example, for the Kingdom of Spain, use the English short name "Spain". The ISO maintains the <a href="https://www.iso.org/obp/ui/#search/code/" target="_blank" rel="noopener">full list of country codes</a>.                                                                                                                                                                                                                                                                                                                                                                    |
| fulfillment.shipping.return\_address.**first\_name**<br /><br />string<br /><br />Conditionally returned                      | First name of the addressee.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />40 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 |
| fulfillment.shipping.return\_address.**last\_name**<br /><br />string<br /><br />Conditionally returned                       | Last name of the addressee.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />40 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  |
| fulfillment.shipping.return\_address.**middle\_name**<br /><br />string<br /><br />Conditionally returned                     | Middle name of the addressee.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />40 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                |
| fulfillment.shipping.return\_address.**phone**<br /><br />string<br /><br />Conditionally returned                            | Telephone number of the addressee.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />20 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           |
| fulfillment.shipping.return\_address.**postal\_code**<br /><br />string<br /><br />Conditionally returned                     | Postal code of the address.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />10 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  |
| fulfillment.shipping.return\_address.**state**<br /><br />string<br /><br />Conditionally returned                            | State or province of the address.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />32 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            |
| fulfillment.shipping.return\_address.**zip**<br /><br />string<br /><br />Conditionally returned                              | United States ZIP code of the address.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />10 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       |
| fulfillment\_status<br /><br />string<br /><br />Returned                                                                     | Card fulfillment status:<br /><br />- **ISSUED:** Initial state of all newly created/issued cards.<br />- **ORDERED:** Card ordered through the card fulfillment provider.<br />- **REORDERED:** Card reordered through the card fulfillment provider.<br />- **REJECTED:** Card rejected by the card fulfillment provider.<br />- **SHIPPED:** Card shipped by the card fulfillment provider.<br />- **DELIVERED:** Card delivered by the card fulfillment provider.<br />- **DIGITALLY\_PRESENTED:** Card digitally presented using the `/cards/{token}/showpan` endpoint; does not affect the delivery of physical cards.<br /><br />**Allowable Values:**<br /><br />`ISSUED`, `ORDERED`, `REORDERED`, `REJECTED`, `SHIPPED`, `DELIVERED`, `DIGITALLY_PRESENTED` |
| instrument\_type<br /><br />string<br /><br />Conditionally returned                                                          | Instrument type of the card:<br /><br />- **PHYSICAL\_MSR:** A physical card with a magnetic stripe. This is the default physical card type.<br />- **PHYSICAL\_ICC:** A physical card with an integrated circuit, or "chip."<br />- **PHYSICAL\_CONTACTLESS:** A physical card that uses radio frequency identification (RFID) or near-field communication (NFC) to enable payment over a secure radio interface.<br />- **PHYSICAL\_COMBO:** A physical card with a chip that also supports contactless payments.<br />- **VIRTUAL\_PAN:** A virtual card with a primary account number (PAN).<br /><br />**Allowable Values:**<br /><br />`PHYSICAL_MSR`, `PHYSICAL_ICC`, `PHYSICAL_CONTACTLESS`, `PHYSICAL_COMBO`, `VIRTUAL_PAN`                                 |
| last\_four<br /><br />string<br /><br />Returned                                                                              | Last four digits of the card primary account number (PAN).<br /><br />**Allowable Values:**<br /><br />4 chars                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       |
| last\_modified\_time<br /><br />datetime<br /><br />Returned                                                                  | Date and time when the resource was last modified, in UTC.<br /><br />**Allowable Values:**<br /><br />datetime<br /><br />**Format:**<br />yyyy-MM-ddThh:mm:ssZ                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     |
| metadata<br /><br />object<br /><br />Conditionally returned                                                                  | Associates customer-provided metadata with the card.<br /><br />**Allowable Values:**<br /><br />Contains the names and values of up to 20 fields in the format `"my_name_1": "my_value_1"`                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          |
| pan<br /><br />string<br /><br />Returned                                                                                     | Primary account number (PAN) of the card.<br /><br />**Allowable Values:**<br /><br />16 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    |
| pin\_is\_set<br /><br />boolean<br /><br />Returned                                                                           | Specifies if the personal identification number (PIN) has been set for the card.<br /><br />**Allowable Values:**<br /><br />4 chars                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 |
| reissue\_pan\_from\_card\_token<br /><br />string<br /><br />Conditionally returned                                           | Reissues the specified card (known as the "source" card).<br /><br />**Allowable Values:**<br /><br />Existing card token                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            |
| new\_pan\_from\_card\_token<br /><br />string<br /><br />Conditionally returned                                               | Reissues the specified card (known as the "source" card) with a new primary account number (PAN).<br /><br />**Allowable Values:**<br /><br />Existing card token                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    |
| state<br /><br />string<br /><br />Returned                                                                                   | Indicates the state of the card.<br /><br />**Allowable Values:**<br /><br />`ACTIVE`, `SUSPENDED`, `TERMINATED`, `UNSUPPORTED`, `UNACTIVATED`, `LIMITED`                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            |
| state\_reason<br /><br />string<br /><br />Returned                                                                           | Descriptive reason for why the card is in its current state. For example, "Card activated by cardholder".<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   |
| token<br /><br />string<br /><br />Returned                                                                                   | Unique identifier of the card.<br /><br />**Allowable Values:**<br /><br />Existing card token                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       |
| translate\_pin\_from\_card\_token<br /><br />string<br /><br />Conditionally returned                                         | Copies the personal identification number (PIN) from the specified source card to the newly created card.<br /><br />**Allowable Values:**<br /><br />Existing card token                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            |
| user\_token<br /><br />string<br /><br />Returned                                                                             | Unique identifier of the cardholder.<br /><br />**Allowable Values:**<br /><br />Existing user token                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 |

<h3 id="_sample_response_body_6">
  Sample response body
</h3>

```json JSON expandable lines wrap theme={null}
{
  "created_time": "2022-02-14T18:48:10Z",
  "last_modified_time": "2022-02-14T18:58:10Z",
  "token": "mytestcard01",
  "user_token": "my_user_01",
  "card_product_token": "my_cardproduct_01",
  "last_four": "8949",
  "pan": "1111115454548949",
  "expiration": "0221",
  "expiration_time": "2027-02-28T23:59:59Z",
  "barcode": "17469201908992951865",
  "pin_is_set": false,
  "state": "UNACTIVATED",
  "state_reason": "New card",
  "expedite": false,
  "fulfillment_status": "ISSUED",
  "fulfillment": {
    "card_personalization": {
      "text": {
        "name_line_1": {
          "value": "My card personalization line 1"
        },
        "name_line_2": {
          "value": "My card personalization line 2"
        }
      },
      "images": {
        "card": {
          "name": "my_card_logo.png",
          "thermal_color": "Black"
        },
        "signature": {
          "name": "my_signature.png"
        },
        "carrier_return_window": {
          "name": "my_return_address_image.png"
        }
      }
    }
  },
  "instrument_type": "PHYSICAL_MSR",
  "metadata": {
    "my_name_1": "my_value_1",
    "my_name_2": "my_value_2"
  }
}
```

<h2 id="put_cards_token">
  Update card
</h2>

**Action:** `PUT`\
**Endpoint:** `/cards/{token}`

{/* <EndpointCard
title="Updates a specific card"
path="/cards/{token}"
method="put"
/> */}

Updates the details of an existing card.

<h3 id="_url_path_parameters_4">
  URL path parameters
</h3>

| Fields                                      | Description                                                                                                       |
| ------------------------------------------- | ----------------------------------------------------------------------------------------------------------------- |
| token<br /><br />string<br /><br />Required | Unique identifier of the card you want to update.<br /><br />**Allowable Values:**<br /><br />Existing card token |

<h3 id="_request_body_3">
  Request body
</h3>

| Fields                                                                                                          | Description                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        |
| --------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| expedite<br /><br />boolean<br /><br />Optional                                                                 | Set to `true` to request expedited processing of the card by your card fulfillment provider.<br /><br />This expedited service is available for cards fulfilled by <a href="http://perfectplastic.com/" target="_blank" rel="noopener">Perfect Plastic Printing</a>, <a href="http://www.idemia.com" target="_blank" rel="noopener">IDEMIA</a>, and <a href="https://www.arroweye.com/" target="_blank" rel="noopener">Arroweye Solutions</a>.<br /><br />**NOTE:** Contact your Marqeta representative for information regarding the cost of expedited service.<br /><br />**Allowable Values:**<br /><br />`true`, `false`<br /><br />**Default value:**<br />`false`                            |
| fulfillment<br /><br />object<br /><br />Optional                                                               | Specifies certain physical characteristics of a card, as well as shipment information.<br /><br />**Allowable Values:**<br /><br />`card_fulfillment_reason`, `card_personalization`, `shipping`                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   |
| fulfillment.**card\_fulfillment\_reason**<br /><br />string<br /><br />Optional                                 | Reason for card fulfillment.<br /><br />**Allowable Values:**<br /><br />`NEW`, `LOST_STOLEN`, `EXPIRED`                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           |
| fulfillment.**card\_personalization**<br /><br />object<br /><br />Required                                     | Specifies personalized attributes to be added to the card.<br /><br />**Allowable Values:**<br /><br />`carrier`, `images`, `perso_type`, `text`                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   |
| fulfillment.card\_personalization.**carrier**<br /><br />object<br /><br />Optional                             | Specifies attributes of the card carrier.<br /><br />**Allowable Values:**<br /><br />`logo_file`, `logo_thumbnail_file`, `message_file`, `message_line`, `template_id`                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            |
| fulfillment.card\_personalization.carrier.**logo\_file**<br /><br />string<br /><br />Optional                  | Specifies an image to display on the card carrier.<br /><br />**Allowable Values:**<br /><br />Contains the name of the image file and must match the name of the file you send to your fulfillment provider.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      |
| fulfillment.card\_personalization.carrier.**logo\_thumbnail\_file**<br /><br />string<br /><br />Optional       | Specifies a thumbnail-sized rendering of the image specified in the `logo_file` field.<br /><br />**Allowable Values:**<br /><br />Contains the name of the image file and must match the name of the file you send to your fulfillment provider.                                                                                                                                                                                                                                                                                                                                                                                                                                                  |
| fulfillment.card\_personalization.carrier.**message\_file**<br /><br />string<br /><br />Optional               | Specifies a text file containing a custom message to print on the card carrier.<br /><br />**Allowable Values:**<br /><br />Contains the name of the text file and must match the name of the file you send to your fulfillment provider.                                                                                                                                                                                                                                                                                                                                                                                                                                                          |
| fulfillment.card\_personalization.carrier.**message\_line**<br /><br />string<br /><br />Optional               | Specifies a custom message that appears on the card carrier.<br /><br />**Allowable Values:**<br /><br />60 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               |
| fulfillment.card\_personalization.carrier.**message\_line\_2**<br /><br />string<br /><br />Optional            | Specifies the second line of a custom message that appears on the card carrier.<br /><br />**Allowable Values:**<br /><br />60 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            |
| fulfillment.card\_personalization.carrier.**template\_id**<br /><br />string<br /><br />Optional                | Specifies the card carrier template to use.<br /><br />**Allowable Values:**<br /><br />Card carrier template ID                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   |
| fulfillment.card\_personalization.**images**<br /><br />object<br /><br />Optional                              | Specifies personalized images that appear on the card.<br /><br />**Allowable Values:**<br /><br />`card`, `carrier`, `carrier_return_window`, `signature`                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         |
| fulfillment.card\_personalization.images.**card**<br /><br />object<br /><br />Optional                         | Specifies personalized images that appear on the card.<br /><br />**Allowable Values:**<br /><br />`name`, `thermal_color`                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         |
| fulfillment.card\_personalization.images.card.**name**<br /><br />string<br /><br />Optional                    | Specifies a PNG image to display on the card.<br /><br />**Allowable Values:**<br /><br />Contains the name of the image file and must match the name of the file you send to your fulfillment provider.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           |
| fulfillment.card\_personalization.images.card.**thermal\_color**<br /><br />string<br /><br />Optional          | Specifies the color of the image displayed on the card.<br /><br />**Allowable Values:**<br /><br />Contains the name of the color and must match one of the provider’s predefined colors.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         |
| fulfillment.card\_personalization.images.**carrier**<br /><br />object<br /><br />Optional                      | Specifies personalized images that appear on the card carrier.<br /><br />**Allowable Values:**<br /><br />`message_1`, `name`                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     |
| fulfillment.card\_personalization.images.carrier.**message\_1**<br /><br />string<br /><br />Optional           | Specifies a custom message that appears on the card carrier.<br /><br />**Allowable Values:**<br /><br />60 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               |
| fulfillment.card\_personalization.images.carrier.**name**<br /><br />string<br /><br />Optional                 | Specifies a PNG image to display on the card carrier.<br /><br />**Allowable Values:**<br /><br />Contains the name of the image file and must match the name of the file you send to your fulfillment provider.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   |
| fulfillment.card\_personalization.images.**carrier\_return\_window**<br /><br />object<br /><br />Optional      | Specifies a PNG image to display in the return address window of envelopes used for sending cards to cardholders.<br /><br />**Allowable Values:**<br /><br />`name`                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               |
| fulfillment.card\_personalization.images.carrier\_return\_window.**name**<br /><br />string<br /><br />Optional | Specifies a PNG image to display in the return address window of envelopes used for sending cards to cardholders.<br /><br />**Allowable Values:**<br /><br />Contains the name of the image file and must match the name of the file you send to your fulfillment provider.                                                                                                                                                                                                                                                                                                                                                                                                                       |
| fulfillment.card\_personalization.images.**signature**<br /><br />object<br /><br />Optional                    | Specifies a PNG image of the cardholder’s signature.<br /><br />**Allowable Values:**<br /><br />`name`                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            |
| fulfillment.card\_personalization.images.signature.**name**<br /><br />string<br /><br />Optional               | Specifies a PNG image of the cardholder’s signature.<br /><br />**Allowable Values:**<br /><br />Contains the name of the image file and must match the name of the file you send to your fulfillment provider.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    |
| fulfillment.card\_personalization.**perso\_type**<br /><br />string<br /><br />Optional                         | Specifies the type of card personalization.<br /><br />**Allowable Values:**<br /><br />`EMBOSS`, `LASER`, `FLAT`                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  |
| fulfillment.card\_personalization.**text**<br /><br />object<br /><br />Required                                | Specifies personalized text that appears on the card.<br /><br />**Allowable Values:**<br /><br />`name_line_1`, `name_line_2`, `name_line_3`                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      |
| fulfillment.card\_personalization.text.**name\_line\_1**<br /><br />object<br /><br />Required                  | Specifies the first line of personalized text that appears on the card.<br /><br />**Allowable Values:**<br /><br />`name_line_1.value`<br /><br />21 char max; if `name_line_1_numeric_postfix` is `true`, 14 char max.<br /><br />Strings longer than the character limit are truncated.                                                                                                                                                                                                                                                                                                                                                                                                         |
| fulfillment.card\_personalization.text.name\_line\_1.**value**<br /><br />string<br /><br />Optional            | Line of personalized text printed on the card.<br /><br />**Allowable Values:**<br /><br />21 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| fulfillment.card\_personalization.text.**name\_line\_2**<br /><br />object<br /><br />Optional                  | Specifies the second line of personalized text that appears on the card.<br /><br />**Allowable Values:**<br /><br />`name_line_2.value`                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           |
| fulfillment.card\_personalization.text.name\_line\_2.**value**<br /><br />string<br /><br />Optional            | Line of personalized text printed on the card.<br /><br />**Allowable Values:**<br /><br />21 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| fulfillment.card\_personalization.text.**name\_line\_3**<br /><br />object<br /><br />Optional                  | Specifies the third line of personalized text that appears on the card.<br /><br />**Allowable Values:**<br /><br />`name_line_3.value`                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            |
| fulfillment.card\_personalization.text.name\_line\_3.**value**<br /><br />string<br /><br />Optional            | Line of personalized text printed on the card.<br /><br />**Allowable Values:**<br /><br />21 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| fulfillment.**shipping**<br /><br />object<br /><br />Optional                                                  | Specifies shipping details for the order.<br /><br />**Allowable Values:**<br /><br />`care_of_line`, `method`, `recipient_address`, `return_address`                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              |
| fulfillment.shipping.**care\_of\_line**<br /><br />string<br /><br />Optional                                   | Adds the specified value as a care of (C/O) line to the mailing carrier.<br /><br />**NOTE:** This field can be specified on cards, card products, and bulk card orders. If you specify this field at multiple levels, the order of precedence is: card, bulk card order, card product.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                                                                                                                                                                                   |
| fulfillment.shipping.**method**<br /><br />string<br /><br />Optional                                           | Specifies the shipping service.<br /><br />**Allowable Values:**<br /><br />`LOCAL_MAIL`, `LOCAL_MAIL_PACKAGE`, `GROUND`, `TWO_DAY`, `OVERNIGHT`, `INTERNATIONAL`, `INTERNATIONAL_PRIORITY`, `LOCAL_PRIORITY`, `FEDEX_EXPEDITED`, `FEDEX_REGULAR`, `UPS_EXPEDITED`, `UPS_REGULAR`, `USPS_EXPEDITED`, `USPS_REGULAR`<br /><br />Shipping options vary by card provider. For details on the specific shipping companies and services offered by your card provider, contact your Marqeta representative.                                                                                                                                                                                             |
| fulfillment.shipping.**recipient\_address**<br /><br />object<br /><br />Optional                               | Address to which the order will be shipped.<br /><br />In order to generate cards, a valid shipping address must be provided by one of these:<br /><br />- The card or bulk card order’s `fulfillment.shipping.recipient_address` field<br />- The users' `address` fields<br />- The card product’s `config.fulfillment.shipping.recipient_address` field<br /><br />The order of precedence from highest to lowest is card, user, card product. To be valid, an address must have the `address1`, `city`, `state`, and `postal_code` or `zip` fields populated. The `country` field defaults to USA if unpopulated.<br /><br />**Allowable Values:**<br /><br />Valid `recipient_address` object |
| fulfillment.shipping.recipient\_address.**address1**<br /><br />string<br /><br />Optional                      | Number and street of the address.<br /><br />**Allowable Values:**<br /><br />255 char max<br /><br />Limits lower than 255 characters may be imposed by providers. Perfect Plastic Printing and IDEMIA have a limit of 100 characters, and Arroweye Solutions has a limit of 50 characters.                                                                                                                                                                                                                                                                                                                                                                                                       |
| fulfillment.shipping.recipient\_address.**address2**<br /><br />string<br /><br />Optional                      | Additional address information.<br /><br />**Allowable Values:**<br /><br />255 char max<br /><br />Limits lower than 255 characters may be imposed by providers. Perfect Plastic Printing and IDEMIA have a limit of 100 characters, and Arroweye Solutions has a limit of 50 characters.                                                                                                                                                                                                                                                                                                                                                                                                         |
| fulfillment.shipping.recipient\_address.**city**<br /><br />string<br /><br />Optional                          | City of the address.<br /><br />**Allowable Values:**<br /><br />40 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       |
| fulfillment.shipping.recipient\_address.**country**<br /><br />string<br /><br />Optional                       | Country of the address.<br /><br />**Allowable Values:**<br /><br />40 char max<br /><br />English short name. For example, for the Kingdom of Spain, use the English short name "Spain".<br /><br />The ISO maintains the <a href="https://www.iso.org/obp/ui/#search/code/" target="_blank" rel="noopener">full list of country codes</a>.                                                                                                                                                                                                                                                                                                                                                       |
| fulfillment.shipping.recipient\_address.**first\_name**<br /><br />string<br /><br />Optional                   | First name of the addressee.<br /><br />**Allowable Values:**<br /><br />40 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               |
| fulfillment.shipping.recipient\_address.**last\_name**<br /><br />string<br /><br />Optional                    | Last name of the addressee.<br /><br />**Allowable Values:**<br /><br />40 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                |
| fulfillment.shipping.recipient\_address.**middle\_name**<br /><br />string<br /><br />Optional                  | Middle name of the addressee.<br /><br />**Allowable Values:**<br /><br />40 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              |
| fulfillment.shipping.recipient\_address.**phone**<br /><br />string<br /><br />Optional                         | Telephone number of the addressee.<br /><br />**Allowable Values:**<br /><br />20 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         |
| fulfillment.shipping.recipient\_address.**postal\_code**<br /><br />string<br /><br />Optional                  | Postal code of the address.<br /><br />**Allowable Values:**<br /><br />10 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                |
| fulfillment.shipping.recipient\_address.**state**<br /><br />string<br /><br />Optional                         | State of the address.<br /><br />**Allowable Values:**<br /><br />32 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      |
| fulfillment.shipping.recipient\_address.**zip**<br /><br />string<br /><br />Optional                           | United States ZIP code of the address.<br /><br />**Allowable Values:**<br /><br />10 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     |
| fulfillment.shipping.**return\_address**<br /><br />object<br /><br />Optional                                  | Address to which the order will be returned if shipping fails.<br /><br />**Allowable Values:**<br /><br />`address1`, `address2`, `city`, `country`, `first_name`, `last_name`, `middle_name`, `phone`, `postal_code`, `state`, `zip`                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| fulfillment.shipping.return\_address.**address1**<br /><br />string<br /><br />Optional                         | Number and street of the address.<br /><br />**Allowable Values:**<br /><br />255 char max<br /><br />Limits lower than 255 characters may be imposed by providers. Perfect Plastic Printing and IDEMIA have a limit of 100 characters, and Arroweye Solutions has a limit of 50 characters.                                                                                                                                                                                                                                                                                                                                                                                                       |
| fulfillment.shipping.return\_address.**address2**<br /><br />string<br /><br />Optional                         | Additional address information.<br /><br />**Allowable Values:**<br /><br />255 char max<br /><br />Limits lower than 255 characters may be imposed by providers. Perfect Plastic Printing and IDEMIA have a limit of 100 characters, and Arroweye Solutions has a limit of 50 characters.                                                                                                                                                                                                                                                                                                                                                                                                         |
| fulfillment.shipping.return\_address.**city**<br /><br />string<br /><br />Optional                             | City of the address.<br /><br />**Allowable Values:**<br /><br />40 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       |
| fulfillment.shipping.return\_address.**country**<br /><br />string<br /><br />Optional                          | Country of the address.<br /><br />**Allowable Values:**<br /><br />40 char max<br /><br />English short name. For example, for the Kingdom of Spain, use the English short name "Spain".<br /><br />The ISO maintains the <a href="https://www.iso.org/obp/ui/#search/code/" target="_blank" rel="noopener">full list of country codes</a>.                                                                                                                                                                                                                                                                                                                                                       |
| fulfillment.shipping.return\_address.**first\_name**<br /><br />string<br /><br />Optional                      | First name of the addressee.<br /><br />**Allowable Values:**<br /><br />40 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               |
| fulfillment.shipping.return\_address.**last\_name**<br /><br />string<br /><br />Optional                       | Last name of the addressee.<br /><br />**Allowable Values:**<br /><br />40 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                |
| fulfillment.shipping.return\_address.**middle\_name**<br /><br />string<br /><br />Optional                     | Middle name of the addressee.<br /><br />**Allowable Values:**<br /><br />40 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              |
| fulfillment.shipping.return\_address.**phone**<br /><br />string<br /><br />Optional                            | Telephone number of the addressee.<br /><br />**Allowable Values:**<br /><br />20 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         |
| fulfillment.shipping.return\_address.**postal\_code**<br /><br />string<br /><br />Optional                     | Postal code of the address.<br /><br />**Allowable Values:**<br /><br />10 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                |
| fulfillment.shipping.return\_address.**state**<br /><br />string<br /><br />Optional                            | State of the address.<br /><br />**Allowable Values:**<br /><br />32 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      |
| fulfillment.shipping.return\_address.**zip**<br /><br />string<br /><br />Optional                              | United States ZIP code of the address.<br /><br />**Allowable Values:**<br /><br />10 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     |
| metadata<br /><br />object<br /><br />Optional                                                                  | Associates customer-provided metadata with the card.<br /><br />**Allowable Values:**<br /><br />Contains the names and values of up to 20 fields in the format `"my_name_1": "my_value_1"`                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        |
| token<br /><br />string<br /><br />Required                                                                     | Unique identifier of the card you want to update.<br /><br />**Allowable Values:**<br /><br />1–36 chars<br /><br />Existing card token<br /><br />Send a `GET` request to `/cards` to retrieve card tokens.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       |
| user\_token<br /><br />string<br /><br />Optional                                                               | Specifies the user you want to associate with the card.<br /><br />**Allowable Values:**<br /><br />1–36 chars<br /><br />Existing user token.<br /><br />Send a `GET` request to `/users` to retrieve user tokens.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                |

<h3 id="_sample_request_body_3">
  Sample request body
</h3>

```json JSON lines wrap theme={null}
{
  "token": "my_card_token_03",
  "user_token": "my_user_03"
}
```

<h3 id="_response_body_7">
  Response body
</h3>

| Fields                                                                                                                        | Description                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          |
| ----------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| activation\_actions<br /><br />object<br /><br />Conditionally returned                                                       | Defines actions to execute when the card is activated. The fields in this object are mutually exclusive.<br /><br />**Allowable Values:**<br /><br />`swap_digital_wallet_tokens_from_card_token`, `terminate_reissued_source_card`                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  |
| activation\_actions.**swap\_digital\_wallet\_tokens\_from\_card\_token**<br /><br />string<br /><br />Conditionally returned  | Moves all digital wallet tokens from the specified card to the new card.<br /><br />Not relevant when `reissue_pan_from_card_token` is set.<br /><br />Send a `GET` request to `/cards/user/{token}` to retrieve card tokens for a particular user.<br /><br />**Allowable Values:**<br /><br />1–36 chars<br /><br />Existing card token                                                                                                                                                                                                                                                                                                                                                                                                                            |
| activation\_actions.**terminate\_reissued\_source\_card**<br /><br />boolean<br /><br />Conditionally returned                | If you are reissuing a card, the source card is terminated by default. To prevent the source card from being terminated, set this field to `false`.<br /><br />Only relevant when `reissue_pan_from_card_token` is set.<br /><br />**Allowable Values:**<br /><br />`true`, `false`<br /><br />**Default value:**<br />`true`                                                                                                                                                                                                                                                                                                                                                                                                                                        |
| barcode<br /><br />string<br /><br />Returned                                                                                 | Barcode printed on the card, expressed as numerals.<br /><br />**Allowable Values:**<br /><br />10-20 chars                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          |
| bulk\_issuance\_token<br /><br />string<br /><br />Conditionally returned                                                     | Unique identifier of the bulk card order.<br /><br />**Allowable Values:**<br /><br />1-36 chars                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     |
| card\_product\_token<br /><br />string<br /><br />Returned                                                                    | Unique identifier of the card product.<br /><br />**Allowable Values:**<br /><br />1-36 chars                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        |
| chip\_cvv\_number<br /><br />string<br /><br />Conditionally returned                                                         | Three-digit card verification value (ICVV) stored on the chip of the card.<br /><br />**Allowable Values:**<br /><br />3 chars                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       |
| contactless\_exemption\_counter<br /><br />integer<br /><br />Conditionally returned                                          | Running count of the contactless transactions successfully completed since the last strong customer authentication (SCA) challenge was issued. You can limit the number of contactless transactions that can be performed without issuing an SCA challenge at the card product level.<br /><br />For more information about strong customer authentication, see <a href="/core-api/card-products/">Card Products</a>.<br /><br />**Allowable Values:**<br /><br />Any integer                                                                                                                                                                                                                                                                                        |
| contactless\_exemption\_total\_amount<br /><br />decimal<br /><br />Conditionally returned                                    | Running total of the money spent in contactless transactions successfully completed since the last strong customer authentication (SCA) challenge was issued. You can limit the total amount that can be spent in contactless transactions without issuing an SCA challenge at the card product level.<br /><br />For more information about strong customer authentication, see <a href="/core-api/card-products/">Card Products</a>.<br /><br />**Allowable Values:**<br /><br />Any integer                                                                                                                                                                                                                                                                       |
| contactless\_exemption\_transaction\_currency<br /><br />string<br /><br />Conditionally returned                             | Indicates the currency type of the transaction.<br /><br />**Allowable Values:**<br /><br />Valid three-character <a href="https://www.iso.org/iso-4217-currency-codes.html" target="_blank" rel="noopener">ISO 4217 currency code</a>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               |
| created\_time<br /><br />datetime<br /><br />Returned                                                                         | Date and time when the resource was created, in UTC.<br /><br />**Allowable Values:**<br /><br />datetime<br /><br />**Format:**<br />yyyy-MM-ddThh:mm:ssZ                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           |
| cvv\_number<br /><br />string<br /><br />Conditionally returned                                                               | Three-digit card verification value (CVV2 or CVC2) printed on the card.<br /><br />**Allowable Values:**<br /><br />3 chars                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          |
| expedite<br /><br />boolean<br /><br />Conditionally returned                                                                 | A value of `true` indicates that you requested expedited processing of the card from your card fulfillment provider.<br /><br />**Allowable Values:**<br /><br />`true`, `false`                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     |
| expiration<br /><br />string<br /><br />Returned                                                                              | Expiration date in `MMyy` format.<br /><br />**Allowable Values:**<br /><br />Format: MMyy                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           |
| expiration\_time<br /><br />datetime<br /><br />Returned                                                                      | Expiration date and time, in UTC.<br /><br />**Allowable Values:**<br /><br />datetime<br /><br />**Format:**<br />yyyy-MM-ddThh:mm:ssZ                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              |
| fulfillment<br /><br />object<br /><br />Conditionally returned                                                               | Determines physical characteristics of a card and shipment information.<br /><br />**Allowable Values:**<br /><br />`card_fulfillment_reason`, `card_personalization`, `shipping`                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    |
| fulfillment.**card\_fulfillment\_reason**<br /><br />string<br /><br />Conditionally returned                                 | Descriptive reason for the card fulfillment.<br /><br />**Allowable Values:**<br /><br />`NEW`, `LOST_STOLEN`, `EXPIRED`                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| fulfillment.**card\_personalization**<br /><br />object<br /><br />Returned                                                   | Specifies personalized attributes to be added to the card.<br /><br />**Allowable Values:**<br /><br />`carrier`, `images`, `perso_type`, `text`                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     |
| fulfillment.card\_personalization.**carrier**<br /><br />object<br /><br />Conditionally returned                             | Specifies attributes of the card carrier.<br /><br />**Allowable Values:**<br /><br />`logo_file`, `logo_thumbnail_file`, `message_file`, `message_line`, `template_id`                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              |
| fulfillment.card\_personalization.carrier.**logo\_file**<br /><br />string<br /><br />Conditionally returned                  | Specifies an image to display on the card carrier.<br /><br />**Allowable Values:**<br /><br />Contains the name of the image file and must match the name of the file you send to your fulfillment provider.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        |
| fulfillment.card\_personalization.carrier.**logo\_thumbnail\_file**<br /><br />string<br /><br />Conditionally returned       | Specifies a thumbnail-sized rendering of the image specified in the `logo_file` field.<br /><br />**Allowable Values:**<br /><br />Contains the name of the image file and must match the name of the file you send to your fulfillment provider.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    |
| fulfillment.card\_personalization.carrier.**message\_file**<br /><br />string<br /><br />Conditionally returned               | Specifies a text file containing a custom message to print on the card carrier.<br /><br />**Allowable Values:**<br /><br />Contains the name of the text file and must match the name of the file you send to your fulfillment provider.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            |
| fulfillment.card\_personalization.carrier.**message\_line**<br /><br />string<br /><br />Conditionally returned               | Specifies a custom message that appears on the card carrier.<br /><br />**Allowable Values:**<br /><br />60 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 |
| fulfillment.card\_personalization.carrier.**message\_line\_2**<br /><br />string<br /><br />Conditionally returned            | Specifies the second line of a custom message that appears on the card carrier.<br /><br />**Allowable Values:**<br /><br />60 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              |
| fulfillment.card\_personalization.carrier.**template\_id**<br /><br />string<br /><br />Conditionally returned                | Specifies the card carrier template to use.<br /><br />**Allowable Values:**<br /><br />Card carrier template ID                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     |
| fulfillment.card\_personalization.**images**<br /><br />object<br /><br />Conditionally returned                              | Specifies personalized images that appear on the card.<br /><br />**Allowable Values:**<br /><br />`card`, `carrier`, `carrier_return_window`, `signature`                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           |
| fulfillment.card\_personalization.images.**card**<br /><br />object<br /><br />Conditionally returned                         | Specifies personalized images that appear on the card.<br /><br />**Allowable Values:**<br /><br />`name`, `thermal_color`                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           |
| fulfillment.card\_personalization.images.card.**name**<br /><br />string<br /><br />Conditionally returned                    | Specifies a PNG image to display on the card.<br /><br />**Allowable Values:**<br /><br />Contains the name of the image file and must match the name of the file you send to your fulfillment provider.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| fulfillment.card\_personalization.images.card.**thermal\_color**<br /><br />string<br /><br />Conditionally returned          | Specifies the color of the image displayed on the card.<br /><br />**Allowable Values:**<br /><br />Contains the name of the color and must match one of the provider’s predefined colors.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           |
| fulfillment.card\_personalization.images.**carrier**<br /><br />object<br /><br />Conditionally returned                      | Specifies personalized images that appear on the card carrier.<br /><br />**Allowable Values:**<br /><br />`message_1`, `name`                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       |
| fulfillment.card\_personalization.images.carrier.**message\_1**<br /><br />string<br /><br />Conditionally returned           | Specifies a custom message that appears on the card carrier.<br /><br />**Allowable Values:**<br /><br />60 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 |
| fulfillment.card\_personalization.images.carrier.**name**<br /><br />string<br /><br />Conditionally returned                 | Specifies a PNG image to display on the card carrier.<br /><br />**Allowable Values:**<br /><br />Contains the name of the image file and must match the name of the file you send to your fulfillment provider.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     |
| fulfillment.card\_personalization.images.**carrier\_return\_window**<br /><br />object<br /><br />Conditionally returned      | Specifies a PNG image to display in the return address window of envelopes used for sending cards to cardholders.<br /><br />**Allowable Values:**<br /><br />`name`                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 |
| fulfillment.card\_personalization.images.carrier\_return\_window.**name**<br /><br />string<br /><br />Conditionally returned | Specifies a PNG image to display in the return address window of envelopes used for sending cards to cardholders.<br /><br />**Allowable Values:**<br /><br />Contains the name of the image file and must match the name of the file you send to your fulfillment provider.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         |
| fulfillment.card\_personalization.images.**signature**<br /><br />object<br /><br />Conditionally returned                    | Specifies a PNG image of the cardholder’s signature.<br /><br />**Allowable Values:**<br /><br />`name`                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              |
| fulfillment.card\_personalization.images.signature.**name**<br /><br />string<br /><br />Conditionally returned               | Specifies a PNG image of the cardholder’s signature.<br /><br />**Allowable Values:**<br /><br />Contains the name of the image file and must match the name of the file you send to your fulfillment provider.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      |
| fulfillment.card\_personalization.**perso\_type**<br /><br />string<br /><br />Conditionally returned                         | Specifies the type of card personalization.<br /><br />**Allowable Values:**<br /><br />`EMBOSS`, `LASER`, `FLAT`                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    |
| fulfillment.card\_personalization.**text**<br /><br />object<br /><br />Returned                                              | Specifies personalized text that appears on the card.<br /><br />**Allowable Values:**<br /><br />`name_line_1`, `name_line_2`, `name_line_3`                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        |
| fulfillment.card\_personalization.text.**name\_line\_1**<br /><br />object<br /><br />Returned                                | Specifies the first line of personalized text that appears on the card.<br /><br />**Allowable Values:**<br /><br />`name_line_1.value`<br /><br />21 char max; if `name_line_1_numeric_postfix` is `true`, 14 char max.<br /><br />Strings longer than the character limit are truncated.                                                                                                                                                                                                                                                                                                                                                                                                                                                                           |
| fulfillment.card\_personalization.text.name\_line\_1.**value**<br /><br />string<br /><br />Conditionally returned            | Line of personalized text printed on the card.<br /><br />**Allowable Values:**<br /><br />21 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               |
| fulfillment.card\_personalization.text.**name\_line\_2**<br /><br />object<br /><br />Conditionally returned                  | Specifies the second line of personalized text that appears on the card.<br /><br />**Allowable Values:**<br /><br />`name_line_2.value`                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| fulfillment.card\_personalization.text.name\_line\_2.**value**<br /><br />string<br /><br />Conditionally returned            | Line of personalized text printed on the card.<br /><br />**Allowable Values:**<br /><br />21 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               |
| fulfillment.card\_personalization.text.**name\_line\_3**<br /><br />object<br /><br />Conditionally returned                  | Specifies the third line of personalized text that appears on the card.<br /><br />**Allowable Values:**<br /><br />`name_line_3.value`                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              |
| fulfillment.card\_personalization.text.name\_line\_3.**value**<br /><br />string<br /><br />Conditionally returned            | Line of personalized text printed on the card.<br /><br />**Allowable Values:**<br /><br />21 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               |
| fulfillment.**shipping**<br /><br />object<br /><br />Conditionally returned                                                  | Specifies shipping details for the order.<br /><br />This object is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />`care_of_line`, `method`, `recipient_address`, `return_address`                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               |
| fulfillment.shipping.**care\_of\_line**<br /><br />string<br /><br />Conditionally returned                                   | Specifies the value of the care of (C/O) line on the mailing carrier.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       |
| fulfillment.shipping.**method**<br /><br />string<br /><br />Conditionally returned                                           | Specifies the shipping service.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />`LOCAL_MAIL`, `LOCAL_MAIL_PACKAGE`, `GROUND`, `TWO_DAY`, `OVERNIGHT`, `INTERNATIONAL`, `INTERNATIONAL_PRIORITY`, `LOCAL_PRIORITY`, `FEDEX_EXPEDITED`, `FEDEX_REGULAR`, `UPS_EXPEDITED`, `UPS_REGULAR`, `USPS_EXPEDITED`, `USPS_REGULAR`                                                                                                                                                                                                                                                                                                                                                                                  |
| fulfillment.shipping.**recipient\_address**<br /><br />object<br /><br />Conditionally returned                               | Address to which the order will be shipped.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />Existing `recipient_address` object                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          |
| fulfillment.shipping.recipient\_address.**address1**<br /><br />string<br /><br />Conditionally returned                      | Number and street of the address.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />255 char max<br /><br />Limits lower than 255 characters may be imposed by providers. Perfect Plastic Printing and IDEMIA have a limit of 100 characters, and Arroweye Solutions has a limit of 50 characters.                                                                                                                                                                                                                                                                                                                                                                                                         |
| fulfillment.shipping.recipient\_address.**address2**<br /><br />string<br /><br />Conditionally returned                      | Additional address information.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />255 char max<br /><br />Limits lower than 255 characters may be imposed by providers. Perfect Plastic Printing and IDEMIA have a limit of 100 characters, and Arroweye Solutions has a limit of 50 characters.                                                                                                                                                                                                                                                                                                                                                                                                           |
| fulfillment.shipping.recipient\_address.**city**<br /><br />string<br /><br />Conditionally returned                          | City of the address.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />40 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         |
| fulfillment.shipping.recipient\_address.**country**<br /><br />string<br /><br />Conditionally returned                       | Country of the address.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />40 char max<br /><br />English short name. For example, for the Kingdom of Spain, use the English short name "Spain". The ISO maintains the <a href="https://www.iso.org/obp/ui/#search/code/" target="_blank" rel="noopener">full list of country codes</a>.                                                                                                                                                                                                                                                                                                                                                                    |
| fulfillment.shipping.recipient\_address.**first\_name**<br /><br />string<br /><br />Conditionally returned                   | First name of the addressee.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />40 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 |
| fulfillment.shipping.recipient\_address.**last\_name**<br /><br />string<br /><br />Conditionally returned                    | Last name of the addressee.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />40 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  |
| fulfillment.shipping.recipient\_address.**middle\_name**<br /><br />string<br /><br />Conditionally returned                  | Middle name of the addressee.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />40 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                |
| fulfillment.shipping.recipient\_address.**phone**<br /><br />string<br /><br />Conditionally returned                         | Telephone number of the addressee.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />20 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           |
| fulfillment.shipping.recipient\_address.**postal\_code**<br /><br />string<br /><br />Conditionally returned                  | Postal code of the address.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />10 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  |
| fulfillment.shipping.recipient\_address.**state**<br /><br />string<br /><br />Conditionally returned                         | State or province of the address.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />32 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            |
| fulfillment.shipping.recipient\_address.**zip**<br /><br />string<br /><br />Conditionally returned                           | United States ZIP code of the address.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />10 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       |
| fulfillment.shipping.**return\_address**<br /><br />object<br /><br />Conditionally returned                                  | Address to which the order will be returned if shipping fails.<br /><br />This object is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />Existing `return_address` object                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         |
| fulfillment.shipping.return\_address.**address1**<br /><br />string<br /><br />Conditionally returned                         | Number and street of the address.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />255 char max<br /><br />Limits lower than 255 characters may be imposed by providers. Perfect Plastic Printing and IDEMIA have a limit of 100 characters, and Arroweye Solutions has a limit of 50 characters.                                                                                                                                                                                                                                                                                                                                                                                                         |
| fulfillment.shipping.return\_address.**address2**<br /><br />string<br /><br />Conditionally returned                         | Additional address information.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />255 char max<br /><br />Limits lower than 255 characters may be imposed by providers. Perfect Plastic Printing and IDEMIA have a limit of 100 characters, and Arroweye Solutions has a limit of 50 characters.                                                                                                                                                                                                                                                                                                                                                                                                           |
| fulfillment.shipping.return\_address.**city**<br /><br />string<br /><br />Conditionally returned                             | City of the address.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />40 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         |
| fulfillment.shipping.return\_address.**country**<br /><br />string<br /><br />Conditionally returned                          | Country of the address.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />40 char max<br /><br />English short name. For example, for the Kingdom of Spain, use the English short name "Spain". The ISO maintains the <a href="https://www.iso.org/obp/ui/#search/code/" target="_blank" rel="noopener">full list of country codes</a>.                                                                                                                                                                                                                                                                                                                                                                    |
| fulfillment.shipping.return\_address.**first\_name**<br /><br />string<br /><br />Conditionally returned                      | First name of the addressee.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />40 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 |
| fulfillment.shipping.return\_address.**last\_name**<br /><br />string<br /><br />Conditionally returned                       | Last name of the addressee.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />40 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  |
| fulfillment.shipping.return\_address.**middle\_name**<br /><br />string<br /><br />Conditionally returned                     | Middle name of the addressee.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />40 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                |
| fulfillment.shipping.return\_address.**phone**<br /><br />string<br /><br />Conditionally returned                            | Telephone number of the addressee.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />20 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           |
| fulfillment.shipping.return\_address.**postal\_code**<br /><br />string<br /><br />Conditionally returned                     | Postal code of the address.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />10 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  |
| fulfillment.shipping.return\_address.**state**<br /><br />string<br /><br />Conditionally returned                            | State or province of the address.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />32 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            |
| fulfillment.shipping.return\_address.**zip**<br /><br />string<br /><br />Conditionally returned                              | United States ZIP code of the address.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />10 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       |
| fulfillment\_status<br /><br />string<br /><br />Returned                                                                     | Card fulfillment status:<br /><br />- **ISSUED:** Initial state of all newly created/issued cards.<br />- **ORDERED:** Card ordered through the card fulfillment provider.<br />- **REORDERED:** Card reordered through the card fulfillment provider.<br />- **REJECTED:** Card rejected by the card fulfillment provider.<br />- **SHIPPED:** Card shipped by the card fulfillment provider.<br />- **DELIVERED:** Card delivered by the card fulfillment provider.<br />- **DIGITALLY\_PRESENTED:** Card digitally presented using the `/cards/{token}/showpan` endpoint; does not affect the delivery of physical cards.<br /><br />**Allowable Values:**<br /><br />`ISSUED`, `ORDERED`, `REORDERED`, `REJECTED`, `SHIPPED`, `DELIVERED`, `DIGITALLY_PRESENTED` |
| instrument\_type<br /><br />string<br /><br />Conditionally returned                                                          | Instrument type of the card:<br /><br />- **PHYSICAL\_MSR:** A physical card with a magnetic stripe. This is the default physical card type.<br />- **PHYSICAL\_ICC:** A physical card with an integrated circuit, or "chip."<br />- **PHYSICAL\_CONTACTLESS:** A physical card that uses radio frequency identification (RFID) or near-field communication (NFC) to enable payment over a secure radio interface.<br />- **PHYSICAL\_COMBO:** A physical card with a chip that also supports contactless payments.<br />- **VIRTUAL\_PAN:** A virtual card with a primary account number (PAN).<br /><br />**Allowable Values:**<br /><br />`PHYSICAL_MSR`, `PHYSICAL_ICC`, `PHYSICAL_CONTACTLESS`, `PHYSICAL_COMBO`, `VIRTUAL_PAN`                                 |
| last\_four<br /><br />string<br /><br />Returned                                                                              | Last four digits of the card primary account number (PAN).<br /><br />**Allowable Values:**<br /><br />4 chars                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       |
| last\_modified\_time<br /><br />datetime<br /><br />Returned                                                                  | Date and time when the resource was last modified, in UTC.<br /><br />**Allowable Values:**<br /><br />datetime<br /><br />**Format:**<br />yyyy-MM-ddThh:mm:ssZ                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     |
| metadata<br /><br />object<br /><br />Conditionally returned                                                                  | Associates customer-provided metadata with the card.<br /><br />**Allowable Values:**<br /><br />Contains the names and values of up to 20 fields in the format `"my_name_1": "my_value_1"`                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          |
| pan<br /><br />string<br /><br />Returned                                                                                     | Primary account number (PAN) of the card.<br /><br />**Allowable Values:**<br /><br />16 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    |
| pin\_is\_set<br /><br />boolean<br /><br />Returned                                                                           | Specifies if the personal identification number (PIN) has been set for the card.<br /><br />**Allowable Values:**<br /><br />4 chars                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 |
| reissue\_pan\_from\_card\_token<br /><br />string<br /><br />Conditionally returned                                           | Reissues the specified card (known as the "source" card).<br /><br />**Allowable Values:**<br /><br />Existing card token                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            |
| new\_pan\_from\_card\_token<br /><br />string<br /><br />Conditionally returned                                               | Reissues the specified card (known as the "source" card) with a new primary account number (PAN).<br /><br />**Allowable Values:**<br /><br />Existing card token                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    |
| state<br /><br />string<br /><br />Returned                                                                                   | Indicates the state of the card.<br /><br />**Allowable Values:**<br /><br />`ACTIVE`, `SUSPENDED`, `TERMINATED`, `UNSUPPORTED`, `UNACTIVATED`, `LIMITED`                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            |
| state\_reason<br /><br />string<br /><br />Returned                                                                           | Descriptive reason for why the card is in its current state. For example, "Card activated by cardholder".<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   |
| token<br /><br />string<br /><br />Returned                                                                                   | Unique identifier of the card.<br /><br />**Allowable Values:**<br /><br />Existing card token                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       |
| translate\_pin\_from\_card\_token<br /><br />string<br /><br />Conditionally returned                                         | Copies the personal identification number (PIN) from the specified source card to the newly created card.<br /><br />**Allowable Values:**<br /><br />Existing card token                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            |
| user\_token<br /><br />string<br /><br />Returned                                                                             | Unique identifier of the cardholder.<br /><br />**Allowable Values:**<br /><br />Existing user token                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 |

<h3 id="_sample_response_body_7">
  Sample response body
</h3>

```json JSON expandable lines wrap theme={null}
{
  "created_time": "2022-02-14T18:48:10Z",
  "last_modified_time": "2022-02-14T18:58:10Z",
  "token": "mytestcard01",
  "user_token": "my_user_01",
  "card_product_token": "my_cardproduct_01",
  "last_four": "8949",
  "pan": "1111115454548949",
  "expiration": "0221",
  "expiration_time": "2027-02-28T23:59:59Z",
  "barcode": "17469201908992951865",
  "pin_is_set": false,
  "state": "UNACTIVATED",
  "state_reason": "New card",
  "expedite": false,
  "fulfillment_status": "ISSUED",
  "fulfillment": {
    "shipping": {
      "method": "UPS_REGULAR",
      "return_address": {
        "address1": "123 Henry St",
        "address2": "Suite 101",
        "city": "Porterville",
        "state": "CA",
        "postal_code": "93257",
        "country": "US",
        "phone": "8315555555",
        "first_name": "Saki",
        "middle_name": "R",
        "last_name": "Dogger"
      },
      "recipient_address": {
        "address1": "1234 Grove St",
        "city": "Berkeley",
        "state": "CA",
        "postal_code": "94702",
        "country": "US",
        "phone": "5105551212",
        "first_name": "Jane",
        "last_name": "Doe"
      }
    },
    "card_personalization": {
      "text": {
        "name_line_1": {
          "value": "My card personalization line 1"
        },
        "name_line_2": {
          "value": "My card personalization line 2"
        }
      },
      "images": {
        "card": {
          "name": "my_card_logo.png",
          "thermal_color": "Black"
        },
        "signature": {
          "name": "my_signature.png"
        },
        "carrier_return_window": {
          "name": "my_return_address_image.png"
        }
      }
    }
  },
  "instrument_type": "PHYSICAL_MSR",
  "metadata": {
    "my_name_1": "my_value_1"
  }
}
```

<h2 id="get_cards_token_showpan">
  Show card PAN
</h2>

**Action:** `GET`\
**Endpoint:** `/cards/{token}/showpan`

{/* <EndpointCard
title="Returns a specific card - PAN visible"
path="/cards/{token}/showpan"
method="get"
/> */}

Retrieves a primary account number (PAN). For security reasons, the PAN is not fully visible on the card resource returned by `GET` `/cards/{token}`.

This endpoint supports [field filtering](/core-api/field-filtering/) and [object expansion](/core-api/object-expansion/).

<h3 id="_url_path_parameters_5">
  URL path parameters
</h3>

| Fields                                      | Description                                                                                                                                                                                                      |
| ------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| token<br /><br />string<br /><br />Required | Unique identifier of the card whose primary account number (PAN) you want to retrieve. Send a `GET` request to `/cards` to retrieve card tokens.<br /><br />**Allowable Values:**<br /><br />Existing card token |

<h3 id="_url_query_parameters_6">
  URL query parameters
</h3>

| Fields                                                   | Description                                                                                                                                                                                     |
| -------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| fields<br /><br />string<br /><br />Optional             | Comma-delimited list of fields to return (`field_1,field_2`, and so on). Leave blank to return all fields.<br /><br />**Allowable Values:**<br /><br />Comma-delimited list of fields, or blank |
| show\_cvv\_number<br /><br />boolean<br /><br />Optional | Set to `true` to show the CVV2 number in the response.<br /><br />**Allowable Values:**<br /><br />`true`, `false`                                                                              |

<h3 id="_response_body_8">
  Response body
</h3>

| Fields                                                                                                                        | Description                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          |
| ----------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| activation\_actions<br /><br />object<br /><br />Conditionally returned                                                       | Defines actions to execute when the card is activated. The fields in this object are mutually exclusive.<br /><br />**Allowable Values:**<br /><br />`swap_digital_wallet_tokens_from_card_token`, `terminate_reissued_source_card`                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  |
| activation\_actions.**swap\_digital\_wallet\_tokens\_from\_card\_token**<br /><br />string<br /><br />Conditionally returned  | Moves all digital wallet tokens from the specified card to the new card.<br /><br />Not relevant when `reissue_pan_from_card_token` is set.<br /><br />Send a `GET` request to `/cards/user/{token}` to retrieve card tokens for a particular user.<br /><br />**Allowable Values:**<br /><br />1–36 chars<br /><br />Existing card token                                                                                                                                                                                                                                                                                                                                                                                                                            |
| activation\_actions.**terminate\_reissued\_source\_card**<br /><br />boolean<br /><br />Conditionally returned                | If you are reissuing a card, the source card is terminated by default. To prevent the source card from being terminated, set this field to `false`.<br /><br />Only relevant when `reissue_pan_from_card_token` is set.<br /><br />**Allowable Values:**<br /><br />`true`, `false`<br /><br />**Default value:**<br />`true`                                                                                                                                                                                                                                                                                                                                                                                                                                        |
| barcode<br /><br />string<br /><br />Returned                                                                                 | Barcode printed on the card, expressed as numerals.<br /><br />**Allowable Values:**<br /><br />10-20 chars                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          |
| bulk\_issuance\_token<br /><br />string<br /><br />Conditionally returned                                                     | Unique identifier of the bulk card order.<br /><br />**Allowable Values:**<br /><br />1-36 chars                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     |
| card\_product\_token<br /><br />string<br /><br />Returned                                                                    | Unique identifier of the card product.<br /><br />**Allowable Values:**<br /><br />1-36 chars                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        |
| chip\_cvv\_number<br /><br />string<br /><br />Conditionally returned                                                         | Three-digit card verification value (ICVV) stored on the chip of the card.<br /><br />**Allowable Values:**<br /><br />3 chars                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       |
| contactless\_exemption\_counter<br /><br />integer<br /><br />Conditionally returned                                          | Running count of the contactless transactions successfully completed since the last strong customer authentication (SCA) challenge was issued. You can limit the number of contactless transactions that can be performed without issuing an SCA challenge at the card product level.<br /><br />For more information about strong customer authentication, see <a href="/core-api/card-products/">Card Products</a>.<br /><br />**Allowable Values:**<br /><br />Any integer                                                                                                                                                                                                                                                                                        |
| contactless\_exemption\_total\_amount<br /><br />decimal<br /><br />Conditionally returned                                    | Running total of the money spent in contactless transactions successfully completed since the last strong customer authentication (SCA) challenge was issued. You can limit the total amount that can be spent in contactless transactions without issuing an SCA challenge at the card product level.<br /><br />For more information about strong customer authentication, see <a href="/core-api/card-products/">Card Products</a>.<br /><br />**Allowable Values:**<br /><br />Any integer                                                                                                                                                                                                                                                                       |
| contactless\_exemption\_transaction\_currency<br /><br />string<br /><br />Conditionally returned                             | Indicates the currency type of the transaction.<br /><br />**Allowable Values:**<br /><br />Valid three-character <a href="https://www.iso.org/iso-4217-currency-codes.html" target="_blank" rel="noopener">ISO 4217 currency code</a>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               |
| created\_time<br /><br />datetime<br /><br />Returned                                                                         | Date and time when the resource was created, in UTC.<br /><br />**Allowable Values:**<br /><br />datetime<br /><br />**Format:**<br />yyyy-MM-ddThh:mm:ssZ                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           |
| cvv\_number<br /><br />string<br /><br />Conditionally returned                                                               | Three-digit card verification value (CVV2 or CVC2) printed on the card.<br /><br />**Allowable Values:**<br /><br />3 chars                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          |
| expedite<br /><br />boolean<br /><br />Conditionally returned                                                                 | A value of `true` indicates that you requested expedited processing of the card from your card fulfillment provider.<br /><br />**Allowable Values:**<br /><br />`true`, `false`                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     |
| expiration<br /><br />string<br /><br />Returned                                                                              | Expiration date in `MMyy` format.<br /><br />**Allowable Values:**<br /><br />Format: MMyy                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           |
| expiration\_time<br /><br />datetime<br /><br />Returned                                                                      | Expiration date and time, in UTC.<br /><br />**Allowable Values:**<br /><br />datetime<br /><br />**Format:**<br />yyyy-MM-ddThh:mm:ssZ                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              |
| fulfillment<br /><br />object<br /><br />Conditionally returned                                                               | Determines physical characteristics of a card and shipment information.<br /><br />**Allowable Values:**<br /><br />`card_fulfillment_reason`, `card_personalization`, `shipping`                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    |
| fulfillment.**card\_fulfillment\_reason**<br /><br />string<br /><br />Conditionally returned                                 | Descriptive reason for the card fulfillment.<br /><br />**Allowable Values:**<br /><br />`NEW`, `LOST_STOLEN`, `EXPIRED`                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| fulfillment.**card\_personalization**<br /><br />object<br /><br />Returned                                                   | Specifies personalized attributes to be added to the card.<br /><br />**Allowable Values:**<br /><br />`carrier`, `images`, `perso_type`, `text`                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     |
| fulfillment.card\_personalization.**carrier**<br /><br />object<br /><br />Conditionally returned                             | Specifies attributes of the card carrier.<br /><br />**Allowable Values:**<br /><br />`logo_file`, `logo_thumbnail_file`, `message_file`, `message_line`, `template_id`                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              |
| fulfillment.card\_personalization.carrier.**logo\_file**<br /><br />string<br /><br />Conditionally returned                  | Specifies an image to display on the card carrier.<br /><br />**Allowable Values:**<br /><br />Contains the name of the image file and must match the name of the file you send to your fulfillment provider.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        |
| fulfillment.card\_personalization.carrier.**logo\_thumbnail\_file**<br /><br />string<br /><br />Conditionally returned       | Specifies a thumbnail-sized rendering of the image specified in the `logo_file` field.<br /><br />**Allowable Values:**<br /><br />Contains the name of the image file and must match the name of the file you send to your fulfillment provider.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    |
| fulfillment.card\_personalization.carrier.**message\_file**<br /><br />string<br /><br />Conditionally returned               | Specifies a text file containing a custom message to print on the card carrier.<br /><br />**Allowable Values:**<br /><br />Contains the name of the text file and must match the name of the file you send to your fulfillment provider.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            |
| fulfillment.card\_personalization.carrier.**message\_line**<br /><br />string<br /><br />Conditionally returned               | Specifies a custom message that appears on the card carrier.<br /><br />**Allowable Values:**<br /><br />60 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 |
| fulfillment.card\_personalization.carrier.**message\_line\_2**<br /><br />string<br /><br />Conditionally returned            | Specifies the second line of a custom message that appears on the card carrier.<br /><br />**Allowable Values:**<br /><br />60 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              |
| fulfillment.card\_personalization.carrier.**template\_id**<br /><br />string<br /><br />Conditionally returned                | Specifies the card carrier template to use.<br /><br />**Allowable Values:**<br /><br />Card carrier template ID                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     |
| fulfillment.card\_personalization.**images**<br /><br />object<br /><br />Conditionally returned                              | Specifies personalized images that appear on the card.<br /><br />**Allowable Values:**<br /><br />`card`, `carrier`, `carrier_return_window`, `signature`                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           |
| fulfillment.card\_personalization.images.**card**<br /><br />object<br /><br />Conditionally returned                         | Specifies personalized images that appear on the card.<br /><br />**Allowable Values:**<br /><br />`name`, `thermal_color`                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           |
| fulfillment.card\_personalization.images.card.**name**<br /><br />string<br /><br />Conditionally returned                    | Specifies a PNG image to display on the card.<br /><br />**Allowable Values:**<br /><br />Contains the name of the image file and must match the name of the file you send to your fulfillment provider.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| fulfillment.card\_personalization.images.card.**thermal\_color**<br /><br />string<br /><br />Conditionally returned          | Specifies the color of the image displayed on the card.<br /><br />**Allowable Values:**<br /><br />Contains the name of the color and must match one of the provider’s predefined colors.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           |
| fulfillment.card\_personalization.images.**carrier**<br /><br />object<br /><br />Conditionally returned                      | Specifies personalized images that appear on the card carrier.<br /><br />**Allowable Values:**<br /><br />`message_1`, `name`                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       |
| fulfillment.card\_personalization.images.carrier.**message\_1**<br /><br />string<br /><br />Conditionally returned           | Specifies a custom message that appears on the card carrier.<br /><br />**Allowable Values:**<br /><br />60 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 |
| fulfillment.card\_personalization.images.carrier.**name**<br /><br />string<br /><br />Conditionally returned                 | Specifies a PNG image to display on the card carrier.<br /><br />**Allowable Values:**<br /><br />Contains the name of the image file and must match the name of the file you send to your fulfillment provider.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     |
| fulfillment.card\_personalization.images.**carrier\_return\_window**<br /><br />object<br /><br />Conditionally returned      | Specifies a PNG image to display in the return address window of envelopes used for sending cards to cardholders.<br /><br />**Allowable Values:**<br /><br />`name`                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 |
| fulfillment.card\_personalization.images.carrier\_return\_window.**name**<br /><br />string<br /><br />Conditionally returned | Specifies a PNG image to display in the return address window of envelopes used for sending cards to cardholders.<br /><br />**Allowable Values:**<br /><br />Contains the name of the image file and must match the name of the file you send to your fulfillment provider.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         |
| fulfillment.card\_personalization.images.**signature**<br /><br />object<br /><br />Conditionally returned                    | Specifies a PNG image of the cardholder’s signature.<br /><br />**Allowable Values:**<br /><br />`name`                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              |
| fulfillment.card\_personalization.images.signature.**name**<br /><br />string<br /><br />Conditionally returned               | Specifies a PNG image of the cardholder’s signature.<br /><br />**Allowable Values:**<br /><br />Contains the name of the image file and must match the name of the file you send to your fulfillment provider.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      |
| fulfillment.card\_personalization.**perso\_type**<br /><br />string<br /><br />Conditionally returned                         | Specifies the type of card personalization.<br /><br />**Allowable Values:**<br /><br />`EMBOSS`, `LASER`, `FLAT`                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    |
| fulfillment.card\_personalization.**text**<br /><br />object<br /><br />Returned                                              | Specifies personalized text that appears on the card.<br /><br />**Allowable Values:**<br /><br />`name_line_1`, `name_line_2`, `name_line_3`                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        |
| fulfillment.card\_personalization.text.**name\_line\_1**<br /><br />object<br /><br />Returned                                | Specifies the first line of personalized text that appears on the card.<br /><br />**Allowable Values:**<br /><br />`name_line_1.value`<br /><br />21 char max; if `name_line_1_numeric_postfix` is `true`, 14 char max.<br /><br />Strings longer than the character limit are truncated.                                                                                                                                                                                                                                                                                                                                                                                                                                                                           |
| fulfillment.card\_personalization.text.name\_line\_1.**value**<br /><br />string<br /><br />Conditionally returned            | Line of personalized text printed on the card.<br /><br />**Allowable Values:**<br /><br />21 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               |
| fulfillment.card\_personalization.text.**name\_line\_2**<br /><br />object<br /><br />Conditionally returned                  | Specifies the second line of personalized text that appears on the card.<br /><br />**Allowable Values:**<br /><br />`name_line_2.value`                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| fulfillment.card\_personalization.text.name\_line\_2.**value**<br /><br />string<br /><br />Conditionally returned            | Line of personalized text printed on the card.<br /><br />**Allowable Values:**<br /><br />21 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               |
| fulfillment.card\_personalization.text.**name\_line\_3**<br /><br />object<br /><br />Conditionally returned                  | Specifies the third line of personalized text that appears on the card.<br /><br />**Allowable Values:**<br /><br />`name_line_3.value`                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              |
| fulfillment.card\_personalization.text.name\_line\_3.**value**<br /><br />string<br /><br />Conditionally returned            | Line of personalized text printed on the card.<br /><br />**Allowable Values:**<br /><br />21 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               |
| fulfillment.**shipping**<br /><br />object<br /><br />Conditionally returned                                                  | Specifies shipping details for the order.<br /><br />This object is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />`care_of_line`, `method`, `recipient_address`, `return_address`                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               |
| fulfillment.shipping.**care\_of\_line**<br /><br />string<br /><br />Conditionally returned                                   | Specifies the value of the care of (C/O) line on the mailing carrier.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       |
| fulfillment.shipping.**method**<br /><br />string<br /><br />Conditionally returned                                           | Specifies the shipping service.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />`LOCAL_MAIL`, `LOCAL_MAIL_PACKAGE`, `GROUND`, `TWO_DAY`, `OVERNIGHT`, `INTERNATIONAL`, `INTERNATIONAL_PRIORITY`, `LOCAL_PRIORITY`, `FEDEX_EXPEDITED`, `FEDEX_REGULAR`, `UPS_EXPEDITED`, `UPS_REGULAR`, `USPS_EXPEDITED`, `USPS_REGULAR`                                                                                                                                                                                                                                                                                                                                                                                  |
| fulfillment.shipping.**recipient\_address**<br /><br />object<br /><br />Conditionally returned                               | Address to which the order will be shipped.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />Existing `recipient_address` object                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          |
| fulfillment.shipping.recipient\_address.**address1**<br /><br />string<br /><br />Conditionally returned                      | Number and street of the address.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />255 char max<br /><br />Limits lower than 255 characters may be imposed by providers. Perfect Plastic Printing and IDEMIA have a limit of 100 characters, and Arroweye Solutions has a limit of 50 characters.                                                                                                                                                                                                                                                                                                                                                                                                         |
| fulfillment.shipping.recipient\_address.**address2**<br /><br />string<br /><br />Conditionally returned                      | Additional address information.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />255 char max<br /><br />Limits lower than 255 characters may be imposed by providers. Perfect Plastic Printing and IDEMIA have a limit of 100 characters, and Arroweye Solutions has a limit of 50 characters.                                                                                                                                                                                                                                                                                                                                                                                                           |
| fulfillment.shipping.recipient\_address.**city**<br /><br />string<br /><br />Conditionally returned                          | City of the address.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />40 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         |
| fulfillment.shipping.recipient\_address.**country**<br /><br />string<br /><br />Conditionally returned                       | Country of the address.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />40 char max<br /><br />English short name. For example, for the Kingdom of Spain, use the English short name "Spain". The ISO maintains the <a href="https://www.iso.org/obp/ui/#search/code/" target="_blank" rel="noopener">full list of country codes</a>.                                                                                                                                                                                                                                                                                                                                                                    |
| fulfillment.shipping.recipient\_address.**first\_name**<br /><br />string<br /><br />Conditionally returned                   | First name of the addressee.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />40 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 |
| fulfillment.shipping.recipient\_address.**last\_name**<br /><br />string<br /><br />Conditionally returned                    | Last name of the addressee.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />40 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  |
| fulfillment.shipping.recipient\_address.**middle\_name**<br /><br />string<br /><br />Conditionally returned                  | Middle name of the addressee.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />40 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                |
| fulfillment.shipping.recipient\_address.**phone**<br /><br />string<br /><br />Conditionally returned                         | Telephone number of the addressee.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />20 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           |
| fulfillment.shipping.recipient\_address.**postal\_code**<br /><br />string<br /><br />Conditionally returned                  | Postal code of the address.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />10 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  |
| fulfillment.shipping.recipient\_address.**state**<br /><br />string<br /><br />Conditionally returned                         | State or province of the address.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />32 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            |
| fulfillment.shipping.recipient\_address.**zip**<br /><br />string<br /><br />Conditionally returned                           | United States ZIP code of the address.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />10 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       |
| fulfillment.shipping.**return\_address**<br /><br />object<br /><br />Conditionally returned                                  | Address to which the order will be returned if shipping fails.<br /><br />This object is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />Existing `return_address` object                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         |
| fulfillment.shipping.return\_address.**address1**<br /><br />string<br /><br />Conditionally returned                         | Number and street of the address.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />255 char max<br /><br />Limits lower than 255 characters may be imposed by providers. Perfect Plastic Printing and IDEMIA have a limit of 100 characters, and Arroweye Solutions has a limit of 50 characters.                                                                                                                                                                                                                                                                                                                                                                                                         |
| fulfillment.shipping.return\_address.**address2**<br /><br />string<br /><br />Conditionally returned                         | Additional address information.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />255 char max<br /><br />Limits lower than 255 characters may be imposed by providers. Perfect Plastic Printing and IDEMIA have a limit of 100 characters, and Arroweye Solutions has a limit of 50 characters.                                                                                                                                                                                                                                                                                                                                                                                                           |
| fulfillment.shipping.return\_address.**city**<br /><br />string<br /><br />Conditionally returned                             | City of the address.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />40 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         |
| fulfillment.shipping.return\_address.**country**<br /><br />string<br /><br />Conditionally returned                          | Country of the address.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />40 char max<br /><br />English short name. For example, for the Kingdom of Spain, use the English short name "Spain". The ISO maintains the <a href="https://www.iso.org/obp/ui/#search/code/" target="_blank" rel="noopener">full list of country codes</a>.                                                                                                                                                                                                                                                                                                                                                                    |
| fulfillment.shipping.return\_address.**first\_name**<br /><br />string<br /><br />Conditionally returned                      | First name of the addressee.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />40 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 |
| fulfillment.shipping.return\_address.**last\_name**<br /><br />string<br /><br />Conditionally returned                       | Last name of the addressee.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />40 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  |
| fulfillment.shipping.return\_address.**middle\_name**<br /><br />string<br /><br />Conditionally returned                     | Middle name of the addressee.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />40 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                |
| fulfillment.shipping.return\_address.**phone**<br /><br />string<br /><br />Conditionally returned                            | Telephone number of the addressee.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />20 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           |
| fulfillment.shipping.return\_address.**postal\_code**<br /><br />string<br /><br />Conditionally returned                     | Postal code of the address.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />10 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  |
| fulfillment.shipping.return\_address.**state**<br /><br />string<br /><br />Conditionally returned                            | State or province of the address.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />32 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            |
| fulfillment.shipping.return\_address.**zip**<br /><br />string<br /><br />Conditionally returned                              | United States ZIP code of the address.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />10 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       |
| fulfillment\_status<br /><br />string<br /><br />Returned                                                                     | Card fulfillment status:<br /><br />- **ISSUED:** Initial state of all newly created/issued cards.<br />- **ORDERED:** Card ordered through the card fulfillment provider.<br />- **REORDERED:** Card reordered through the card fulfillment provider.<br />- **REJECTED:** Card rejected by the card fulfillment provider.<br />- **SHIPPED:** Card shipped by the card fulfillment provider.<br />- **DELIVERED:** Card delivered by the card fulfillment provider.<br />- **DIGITALLY\_PRESENTED:** Card digitally presented using the `/cards/{token}/showpan` endpoint; does not affect the delivery of physical cards.<br /><br />**Allowable Values:**<br /><br />`ISSUED`, `ORDERED`, `REORDERED`, `REJECTED`, `SHIPPED`, `DELIVERED`, `DIGITALLY_PRESENTED` |
| instrument\_type<br /><br />string<br /><br />Conditionally returned                                                          | Instrument type of the card:<br /><br />- **PHYSICAL\_MSR:** A physical card with a magnetic stripe. This is the default physical card type.<br />- **PHYSICAL\_ICC:** A physical card with an integrated circuit, or "chip."<br />- **PHYSICAL\_CONTACTLESS:** A physical card that uses radio frequency identification (RFID) or near-field communication (NFC) to enable payment over a secure radio interface.<br />- **PHYSICAL\_COMBO:** A physical card with a chip that also supports contactless payments.<br />- **VIRTUAL\_PAN:** A virtual card with a primary account number (PAN).<br /><br />**Allowable Values:**<br /><br />`PHYSICAL_MSR`, `PHYSICAL_ICC`, `PHYSICAL_CONTACTLESS`, `PHYSICAL_COMBO`, `VIRTUAL_PAN`                                 |
| last\_four<br /><br />string<br /><br />Returned                                                                              | Last four digits of the card primary account number (PAN).<br /><br />**Allowable Values:**<br /><br />4 chars                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       |
| last\_modified\_time<br /><br />datetime<br /><br />Returned                                                                  | Date and time when the resource was last modified, in UTC.<br /><br />**Allowable Values:**<br /><br />datetime<br /><br />**Format:**<br />yyyy-MM-ddThh:mm:ssZ                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     |
| metadata<br /><br />object<br /><br />Conditionally returned                                                                  | Associates customer-provided metadata with the card.<br /><br />**Allowable Values:**<br /><br />Contains the names and values of up to 20 fields in the format `"my_name_1": "my_value_1"`                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          |
| pan<br /><br />string<br /><br />Returned                                                                                     | Primary account number (PAN) of the card.<br /><br />**Allowable Values:**<br /><br />16 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    |
| pin\_is\_set<br /><br />boolean<br /><br />Returned                                                                           | Specifies if the personal identification number (PIN) has been set for the card.<br /><br />**Allowable Values:**<br /><br />4 chars                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 |
| reissue\_pan\_from\_card\_token<br /><br />string<br /><br />Conditionally returned                                           | Reissues the specified card (known as the "source" card).<br /><br />**Allowable Values:**<br /><br />Existing card token                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            |
| new\_pan\_from\_card\_token<br /><br />string<br /><br />Conditionally returned                                               | Reissues the specified card (known as the "source" card) with a new primary account number (PAN).<br /><br />**Allowable Values:**<br /><br />Existing card token                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    |
| state<br /><br />string<br /><br />Returned                                                                                   | Indicates the state of the card.<br /><br />**Allowable Values:**<br /><br />`ACTIVE`, `SUSPENDED`, `TERMINATED`, `UNSUPPORTED`, `UNACTIVATED`, `LIMITED`                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            |
| state\_reason<br /><br />string<br /><br />Returned                                                                           | Descriptive reason for why the card is in its current state. For example, "Card activated by cardholder".<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   |
| token<br /><br />string<br /><br />Returned                                                                                   | Unique identifier of the card.<br /><br />**Allowable Values:**<br /><br />Existing card token                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       |
| translate\_pin\_from\_card\_token<br /><br />string<br /><br />Conditionally returned                                         | Copies the personal identification number (PIN) from the specified source card to the newly created card.<br /><br />**Allowable Values:**<br /><br />Existing card token                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            |
| user\_token<br /><br />string<br /><br />Returned                                                                             | Unique identifier of the cardholder.<br /><br />**Allowable Values:**<br /><br />Existing user token                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 |

<h3 id="_sample_response_body_8">
  Sample response body
</h3>

```json JSON expandable lines wrap theme={null}
{
  "created_time": "2021-12-28T18:31:23Z",
  "last_modified_time": "2022-02-14T19:32:38Z",
  "token": "my_user_01_card_02",
  "user_token": "my_user_01",
  "card_product_token": "my_cardproduct_01",
  "last_four": "1865",
  "pan": "1111111824981865",
  "expiration": "1220",
  "expiration_time": "2026-12-31T23:59:59Z",
  "cvv_number": "137",
  "barcode": "25815105237561780909",
  "pin_is_set": false,
  "state": "UNACTIVATED",
  "state_reason": "New card",
  "expedite": false,
  "fulfillment_status": "DIGITALLY_PRESENTED",
  "fulfillment": {
    "shipping": {
      "method": "FEDEX_REGULAR",
      "care_of_line": "my_care_of_value"
    },
    "card_personalization": {
      "text": {
        "name_line_1": {
          "value": "My card personalization line 1"
        },
        "name_line_2": {
          "value": "My card personalization line 2"
        }
      },
      "images": {
        "card": {
          "name": "my_card_logo.png",
          "thermal_color": "Black"
        },
        "signature": {
          "name": "my_signature.png"
        },
        "carrier_return_window": {
          "name": "my_return_address_image.png"
        }
      }
    }
  },
  "instrument_type": "PHYSICAL_MSR"
}
```
