> ## 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.

# Bulk Card Orders

> Use the bulk issuances endpoint to order physical payment cards in bulk for your cardholders.

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>;
};

Use the `/bulkissuances` endpoint to order physical payment cards in bulk.

For more information on cards, card products, and bulk card ordering, see [About Cards](/developer-guides/about-cards/).

Some attributes of the `bulkissuance` object can also be defined in an associated `card` or `cardproduct` object. If you define one of these attributes in more than one object, the Marqeta platform applies an order of precedence to determine which attribute to use at fulfillment time. The order of precedence is as follows:

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

  <Step>
    `bulkissuance`
  </Step>

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

Defining an attribute in an object with higher precedence does not overwrite the same attribute in a lower-precedence object; the Marqeta platform ignores these lower-precedence attributes.

For more information on cards, see [About Cards](/developer-guides/about-cards/).

<h2 id="post_bulkissuances">
  Create bulk card order
</h2>

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

{/* <EndpointCard
title="Creates a bulk issuance request for cards"
path="/bulkissuances"
method="post"
/> */}

Use this endpoint to order physical cards in bulk. A new bulk card order creates new cards or users, generally within about a day.

Before creating a bulk card order, set the `config.fulfillment.bulk_ship` field of the associated card product to `true`.

**To associate all cards with the same user:**

* Set `user_association.single_inventory_user=true`

* Set `user_association.single_inventory_user_token` equal to the token of an existing user.

The bulk card order automatically populates the database with the specified card objects. Values for the card `token` fields are generated in the format `card-numericPostfix`, where `numericPostfix` is a randomly generated number that is added for each new card that is generated.

**To associate each card with a unique user:**

Set `user_association.single_inventory_user=false`. Both the cards and their associated users are automatically generated. Values for the user `token` fields are generated in the format `user-numericPostfix`. The `numericPostfix` values for cards and their associated users match. This value is also printed on the physical cards if the `name_line_1_numeric_postfix` field is set to `true`.

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

| Fields                                                                                                          | Description                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| --------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| card\_allocation<br /><br />integer<br /><br />Required                                                         | Number of cards in the order.<br /><br />**Allowable Values:**<br /><br />50000 max<br /><br />The actual number of cards processed per day depends on your fulfillment provider. Contact your Marqeta representative for more information.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| card\_product\_token<br /><br />string<br /><br />Required                                                      | Specifies the card product from which to create your cards.<br /><br />**Allowable Values:**<br /><br />1–36 chars<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 order 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 />Required                                                               | Specifies certain physical characteristics of a card, as well as bulk shipment information.<br /><br />**Allowable Values:**<br /><br />`card_personalization`, `shipping`                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              |
| 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.**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                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          |
| name\_line\_1\_numeric\_postfix<br /><br />boolean<br /><br />Optional                                          | If set to `true`, the unique numeric postfix appended to each card’s token field is also appended to the card’s `fulfillment.card_personalization.text.name_line_1.value` field.<br /><br />**Allowable Values:**<br /><br />`true`, `false`<br /><br />**Default value:**<br />`false`                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 |
| name\_line\_1\_random\_postfix<br /><br />boolean<br /><br />Optional                                           | If set to `true`, the unique random postfix appended to each card’s token field is also appended to the card’s `fulfillment.card_personalization.text.name_line_1.value` field.<br /><br />**Allowable Values:**<br /><br />`true`, `false`<br /><br />**Default value:**<br />`false`                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  |
| token<br /><br />string<br /><br />Required                                                                     | If you do not include a token, the system will generate one automatically. This token is necessary for use in other API calls, so we recommend that rather than let the system generate one, you use a simple string that is easy to remember. This value cannot be updated.<br /><br />**Allowable Values:**<br /><br />1–36 chars                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     |
| user\_association<br /><br />object<br /><br />Optional                                                         | Associates each card with a user.<br /><br />**Allowable Values:**<br /><br />`single_inventory_user`, `single_inventory_user_token`                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    |
| user\_association.**single\_inventory\_user**<br /><br />boolean<br /><br />Optional                            | Set to `true` to associate all cards with the same user. Set to `false` to associate each card with a different user. When set to `false`, users are generated automatically and associated with the cards.<br /><br />**Allowable Values:**<br /><br />`true`, `false`<br /><br />**Default value:**<br />`false`                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      |
| user\_association.**single\_inventory\_user\_token**<br /><br />string<br /><br />Optional                      | If `single_inventory_user=true`, use this field to specify the token of an existing user. All cards in the order will be associated with this user.<br /><br />**Allowable Values:**<br /><br />1–36 chars                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              |

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

```json JSON expandable lines wrap theme={null}
{
  "token": "bulk_06_token",
  "card_product_token": "my_card_product_02",
  "card_allocation": 3,
  "user_association": {
    "single_inventory_user": false
  },
  "name_line_1_numeric_postfix": true,
  "fulfillment": {
    "shipping": {
      "method": "UPS_REGULAR",
      "return_address": {
        "address1": "1222 Blake Street",
        "city": "Berkeley",
        "state": "CA",
        "postal_code": "94702",
        "country": "USA",
        "phone": "5102222222",
        "first_name": "Shipping",
        "last_name": "R_US"
      },
      "recipient_address": {
        "address1": "1255 Lake Street",
        "city": "Oakland",
        "state": "CA",
        "postal_code": "94611",
        "country": "USA",
        "phone": "5103333333",
        "first_name": "Saki",
        "last_name": "Dogger"
      }
    },
    "card_personalization": {
      "text": {
        "name_line_1": {
          "value": "Saki Dogger"
        },
        "name_line_2": {
          "value": "Aegis Fleet Services"
        }
      },
      "carrier": {
        "name": "my_carrier_logo.png",
        "message_line": "my message"
      },
      "images": {
        "card": {
          "name": "my_card_logo.png",
          "thermal_color": "Black"
        },
        "signature": {
          "name": "my_signature.png"
        },
        "carrier_return_window": {
          "name": "my_return_address_image.png"
        }
      }
    }
  }
}
```

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

| Fields                                                                                                                        | Description                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| ----------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| card\_allocation<br /><br />integer<br /><br />Returned                                                                       | Number of cards in the order.<br /><br />**Allowable Values:**<br /><br />50000 max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     |
| card\_fulfillment\_time<br /><br />datetime<br /><br />Conditionally returned                                                 | Date and time when the bulk card order was fulfilled, in UTC.<br /><br />This field is included if your bulk card order has been processed.<br /><br />**Allowable Values:**<br /><br />Format: yyyy-MM-ddThh:mm:ssZ                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    |
| card\_product\_token<br /><br />string<br /><br />Returned                                                                    | Specifies the card product from which the cards are created.<br /><br />**Allowable Values:**<br /><br />1–36 chars                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     |
| cards\_processed<br /><br />integer<br /><br />Conditionally returned                                                         | Number of cards processed in the bulk card order.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />Any positive integer                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      |
| created\_time<br /><br />datetime<br /><br />Conditionally returned                                                           | Date and time when the resource was created, in UTC.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />Format: yyyy-MM-ddThh:mm:ssZ                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           |
| expedite<br /><br />boolean<br /><br />Conditionally returned                                                                 | Indicates if expedited processing of this bulk card order was requested.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />`true`, `false`                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    |
| expiration\_offset<br /><br />object<br /><br />Conditionally returned                                                        | 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 />Conditionally returned                                               | 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 />Conditionally returned                                             | 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 />Returned                                                                             | Specifies certain physical characteristics of a card, as well as bulk shipment information.<br /><br />This object is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />`card_personalization`, `shipping`                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| 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.**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                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          |
| name\_line1\_end\_index<br /><br />integer<br /><br />Conditionally returned                                                  | This field is included if your bulk card order has been processed.<br /><br />You can use the `name_line1_start_index` and `name_line1_end_index` fields to identify the cards and users associated with the order. For example, if the start index is "1" and the end index is "3", the card tokens are "card-1", "card-2", and "card-3", and the user tokens are "user-1", "user-2", and "user-3".<br /><br />See <a href="/core-api/bulk-card-orders/#post_bulkissuances">Create bulk card order</a> for more information about the automatic generation and naming of cards and users.<br /><br />**Allowable Values:**<br /><br />Any positive integer                                                                                                                                                                                                                                             |
| name\_line1\_start\_index<br /><br />integer<br /><br />Conditionally returned                                                | This field is included if your bulk card order has been processed.<br /><br />You can use the `name_line1_start_index` and `name_line1_end_index` fields to identify the cards and users associated with the order. For example, if the start index is "1" and the end index is "3", the card tokens are "card-1", "card-2", and "card-3", and the user tokens are "user-1", "user-2", and "user-3".<br /><br />See <a href="/core-api/bulk-card-orders/#post_bulkissuances">Create bulk card order</a> for more information about the automatic generation and naming of cards and users.<br /><br />**Allowable Values:**<br /><br />Any positive integer                                                                                                                                                                                                                                             |
| name\_line\_1\_numeric\_postfix<br /><br />boolean<br /><br />Conditionally returned                                          | If set to `true`, the unique numeric postfix appended to each card’s token field is also appended to the card’s `fulfillment.card_personalization.text.name_line_1.value` field.<br /><br />**Allowable Values:**<br /><br />`true`, `false`                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            |
| name\_line\_1\_random\_postfix<br /><br />boolean<br /><br />Conditionally returned                                           | If set to `true`, the unique random postfix appended to each card’s token field is also appended to the card’s `fulfillment.card_personalization.text.name_line_1.value` field.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />`true`, `false`                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| provider\_ship\_date<br /><br />datetime<br /><br />Conditionally returned                                                    | Date and time when the card provider shipped the bulk card order, in UTC.<br /><br />This field is included if your bulk card order has shipped.<br /><br />**Allowable Values:**<br /><br />Format: yyyy-MM-ddThh:mm:ssZ                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               |
| provider\_shipping\_method<br /><br />string<br /><br />Conditionally returned                                                | Shipping method used by the card provider. `United_Postal_Service`, for example.<br /><br />This field is included if your bulk card order has shipped.<br /><br />**Allowable Values:**<br /><br />String                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              |
| provider\_tracking\_number<br /><br />string<br /><br />Conditionally returned                                                | A tracking number is included only if your card provider is Arroweye Solutions.<br /><br />This field is included if your bulk card order has shipped.<br /><br />**Allowable Values:**<br /><br />String                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               |
| token<br /><br />string<br /><br />Returned                                                                                   | Unique identifier of the bulk card order.<br /><br />**Allowable Values:**<br /><br />1–36 chars                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        |
| user\_association<br /><br />object<br /><br />Conditionally returned                                                         | Associates each card with a user.<br /><br />**Allowable Values:**<br /><br />`single_inventory_user`, `single_inventory_user_token`                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    |
| user\_association.**single\_inventory\_user**<br /><br />boolean<br /><br />Conditionally returned                            | Set to `true` to associate all cards with the same user. Set to `false` to associate each card with a different user. When set to `false`, users are generated automatically and associated with the cards.<br /><br />**Allowable Values:**<br /><br />`true`, `false`<br /><br />**Default value:**<br />`false`                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      |
| user\_association.**single\_inventory\_user\_token**<br /><br />string<br /><br />Conditionally returned                      | If `single_inventory_user=true`, use this field to specify the token of an existing user. All cards in the order will be associated with this user.<br /><br />**Allowable Values:**<br /><br />1–36 chars                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              |

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

```json JSON expandable lines wrap theme={null}
{
  "token": "bulk_06_token",
  "expedite": false,
  "fulfillment": {
    "shipping": {
      "method": "UPS_REGULAR",
      "return_address": {
        "first_name": "Shipping",
        "last_name": "R_US",
        "address1": "1222 Blake Street",
        "city": "Berkeley",
        "state": "CA",
        "postal_code": "94702",
        "country": "USA",
        "phone": "5102222222"
      },
      "recipient_address": {
        "first_name": "Saki",
        "last_name": "Dogger",
        "address1": "1255 Lake Street",
        "city": "Oakland",
        "state": "CA",
        "postal_code": "94611",
        "country": "USA",
        "phone": "5103333333"
      }
    },
    "card_personalization": {
      "text": {
        "name_line_1": {
          "value": "Saki Dogger"
        },
        "name_line_2": {
          "value": "Aegis Fleet Services"
        }
      },
      "carrier": {
        "name": "my_carrier_logo.png",
        "message_line": "my message"
      },
      "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_card_product_02",
  "card_allocation": 3,
  "user_association": {
    "single_inventory_user": false,
    "name_line_1_numeric_postfix": true,
    "expiration_offset": {
      "unit": "YEARS",
      "value": 10
    }
  },
  "created_time": "2022-08-06T00:06:34Z",
  "api": "bulkissuances",
  "endpoint": "/bulkissuances",
  "method": "post",
  "cp_id": 1,
  "bc_id": 1
}
```

<h2 id="get_bulkissuances">
  List bulk card orders
</h2>

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

{/* <EndpointCard
title="Lists all bulk issuance requests"
path="/bulkissuances"
method="get"
/> */}

Use this endpoint to list existing bulk card orders.

This endpoint supports [pagination and sorting](/core-api/sorting-and-pagination/).

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

| Fields                                              | Description                                                                                                                                                                                                                                                                                                                                                                                                          |
| --------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| count<br /><br />integer<br /><br />Optional        | Number of bulk card orders 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 (The first bulk card order resource in your system)                                                                                                                                                                                                       |
| sort\_by<br /><br />string<br /><br />Optional      | Field on which to sort. 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 />`-createdTime` |

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

| Fields                                                                                                                                | Description                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| ------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| count<br /><br />integer<br /><br />Conditionally returned                                                                            | 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 bulk issuance objects.<br /><br />Objects are returned as appropriate to your query.<br /><br />**Allowable Values:**<br /><br />Valid array of one or more bulk issuance objects                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              |
| data\[].**card\_allocation**<br /><br />integer<br /><br />Returned                                                                   | Number of cards in the order.<br /><br />**Allowable Values:**<br /><br />50000 max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     |
| data\[].**card\_fulfillment\_time**<br /><br />datetime<br /><br />Conditionally returned                                             | Date and time when the bulk card order was fulfilled, in UTC.<br /><br />This field is included if your bulk card order has been processed.<br /><br />**Allowable Values:**<br /><br />Format: yyyy-MM-ddThh:mm:ssZ                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    |
| data\[].**card\_product\_token**<br /><br />string<br /><br />Returned                                                                | Specifies the card product from which the cards are created.<br /><br />**Allowable Values:**<br /><br />1–36 chars                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     |
| data\[].**cards\_processed**<br /><br />integer<br /><br />Conditionally returned                                                     | Number of cards processed in the bulk card order.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />Any positive integer                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      |
| data\[].**created\_time**<br /><br />datetime<br /><br />Conditionally returned                                                       | Date and time when the resource was created, in UTC.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />Format: yyyy-MM-ddThh:mm:ssZ                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           |
| data\[].**expedite**<br /><br />boolean<br /><br />Conditionally returned                                                             | Indicates if expedited processing of this bulk card order was requested.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />`true`, `false`                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    |
| data\[].**expiration\_offset**<br /><br />object<br /><br />Conditionally returned                                                    | Specifies the length of time after the date of issue for which the cards are valid.<br /><br />**Allowable Values:**<br /><br />`unit`, `value`                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         |
| data\[].expiration\_offset.**unit**<br /><br />string<br /><br />Conditionally returned                                               | 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`                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               |
| data\[].expiration\_offset.**value**<br /><br />integer<br /><br />Conditionally returned                                             | 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 |
| data\[].**fulfillment**<br /><br />object<br /><br />Returned                                                                         | Specifies certain physical characteristics of a card, as well as bulk shipment information.<br /><br />This object is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />`card_personalization`, `shipping`                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| 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.**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\[].**name\_line1\_end\_index**<br /><br />integer<br /><br />Conditionally returned                                              | This field is included if your bulk card order has been processed.<br /><br />You can use the `name_line1_start_index` and `name_line1_end_index` fields to identify the cards and users associated with the order. For example, if the start index is "1" and the end index is "3", the card tokens are "card-1", "card-2", and "card-3", and the user tokens are "user-1", "user-2", and "user-3".<br /><br />See <a href="/core-api/bulk-card-orders/#post_bulkissuances">Create bulk card order</a> for more information about the automatic generation and naming of cards and users.<br /><br />**Allowable Values:**<br /><br />Any positive integer                                                                                                                                                                                                                                             |
| data\[].**name\_line1\_start\_index**<br /><br />integer<br /><br />Conditionally returned                                            | This field is included if your bulk card order has been processed.<br /><br />You can use the `name_line1_start_index` and `name_line1_end_index` fields to identify the cards and users associated with the order. For example, if the start index is "1" and the end index is "3", the card tokens are "card-1", "card-2", and "card-3", and the user tokens are "user-1", "user-2", and "user-3".<br /><br />See <a href="/core-api/bulk-card-orders/#post_bulkissuances">Create bulk card order</a> for more information about the automatic generation and naming of cards and users.<br /><br />**Allowable Values:**<br /><br />Any positive integer                                                                                                                                                                                                                                             |
| data\[].**name\_line\_1\_numeric\_postfix**<br /><br />boolean<br /><br />Conditionally returned                                      | If set to `true`, the unique numeric postfix appended to each card’s token field is also appended to the card’s `fulfillment.card_personalization.text.name_line_1.value` field.<br /><br />**Allowable Values:**<br /><br />`true`, `false`                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            |
| data\[].**name\_line\_1\_random\_postfix**<br /><br />boolean<br /><br />Conditionally returned                                       | If set to `true`, the unique random postfix appended to each card’s token field is also appended to the card’s `fulfillment.card_personalization.text.name_line_1.value` field.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />`true`, `false`                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| data\[].**provider\_ship\_date**<br /><br />datetime<br /><br />Conditionally returned                                                | Date and time when the card provider shipped the bulk card order, in UTC.<br /><br />This field is included if your bulk card order has shipped.<br /><br />**Allowable Values:**<br /><br />Format: yyyy-MM-ddThh:mm:ssZ                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               |
| data\[].**provider\_shipping\_method**<br /><br />string<br /><br />Conditionally returned                                            | Shipping method used by the card provider. `United_Postal_Service`, for example.<br /><br />This field is included if your bulk card order has shipped.<br /><br />**Allowable Values:**<br /><br />String                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              |
| data\[].**provider\_tracking\_number**<br /><br />string<br /><br />Conditionally returned                                            | A tracking number is included only if your card provider is Arroweye Solutions.<br /><br />This field is included if your bulk card order has shipped.<br /><br />**Allowable Values:**<br /><br />String                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               |
| data\[].**token**<br /><br />string<br /><br />Returned                                                                               | Unique identifier of the bulk card order.<br /><br />**Allowable Values:**<br /><br />1–36 chars                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        |
| data\[].**user\_association**<br /><br />object<br /><br />Conditionally returned                                                     | Associates each card with a user.<br /><br />**Allowable Values:**<br /><br />`single_inventory_user`, `single_inventory_user_token`                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    |
| data\[].user\_association.**single\_inventory\_user**<br /><br />boolean<br /><br />Conditionally returned                            | Set to `true` to associate all cards with the same user. Set to `false` to associate each card with a different user. When set to `false`, users are generated automatically and associated with the cards.<br /><br />**Allowable Values:**<br /><br />`true`, `false`<br /><br />**Default value:**<br />`false`                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      |
| data\[].user\_association.**single\_inventory\_user\_token**<br /><br />string<br /><br />Conditionally returned                      | If `single_inventory_user=true`, use this field to specify the token of an existing user. All cards in the order will be associated with this user.<br /><br />**Allowable Values:**<br /><br />1–36 chars                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              |
| 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": true,
  "data[]": {
    "token": "bulk_06_token",
    "expedite": false,
    "fulfillment": {
      "shipping": {
        "method": "UPS_REGULAR",
        "return_address": {
          "first_name": "Shipping",
          "last_name": "R_US",
          "address1": "1222 Blake Street",
          "city": "Berkeley",
          "state": "CA",
          "postal_code": "94702",
          "country": "USA",
          "phone": "5102222222"
        },
        "recipient_address": {
          "first_name": "Saki",
          "last_name": "Dogger",
          "address1": "1255 Lake Street",
          "city": "Oakland",
          "state": "CA",
          "postal_code": "94611",
          "country": "USA",
          "phone": "5103333333"
        },
        "card_personalization": {
          "text": {
            "name_line_1": {
              "value": "Saki Dogger"
            },
            "name_line_2": {
              "value": "Aegis Fleet Services"
            }
          },
          "carrier": {
            "name": "my_carrier_logo.png",
            "message_line": "my message"
          },
          "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_card_product_02",
        "card_allocation": 3,
        "user_association": {
          "single_inventory_user": false
        },
        "name_line_1_numeric_postfix": true,
        "expiration_offset": {
          "unit": "YEARS",
          "value": 10
        },
        "created_time": "2020-08-06T00:06:34Z",
        "name_line1_start_index": 1,
        "name_line1_end_index": 3,
        "card_fulfillment_time": "2022-08-07T23:59:44Z",
        "provider_ship_date": "2022-08-08T00:00:00Z",
        "provider_shipping_method": "United_Parcel_Service",
        "provider_tracking_number": "982247"
      }
    },
    "api": "bulkissuances",
    "endpoint": "/bulkissuances",
    "method": "get",
    "cp_id": 1,
    "bc_id": 1
  }
}
```

<h2 id="get_bulkissuances_token">
  Retrieve bulk card order
</h2>

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

{/* <EndpointCard
title="Returns a bulk issuance request"
path="/bulkissuances/{token}"
method="get"
/> */}

Use this endpoint to retrieve a specific bulk card order.

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

| Fields                                      | Description                                                                                                                          |
| ------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------ |
| token<br /><br />string<br /><br />Required | The unique identifier of the bulk card order to retrieve.<br /><br />**Allowable Values:**<br /><br />Existing bulk card order token |

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

| Fields                                                                                                                        | Description                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| ----------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| card\_allocation<br /><br />integer<br /><br />Returned                                                                       | Number of cards in the order.<br /><br />**Allowable Values:**<br /><br />50000 max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     |
| card\_fulfillment\_time<br /><br />datetime<br /><br />Conditionally returned                                                 | Date and time when the bulk card order was fulfilled, in UTC.<br /><br />This field is included if your bulk card order has been processed.<br /><br />**Allowable Values:**<br /><br />Format: yyyy-MM-ddThh:mm:ssZ                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    |
| card\_product\_token<br /><br />string<br /><br />Returned                                                                    | Specifies the card product from which the cards are created.<br /><br />**Allowable Values:**<br /><br />1–36 chars                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     |
| cards\_processed<br /><br />integer<br /><br />Conditionally returned                                                         | Number of cards processed in the bulk card order.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />Any positive integer                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      |
| created\_time<br /><br />datetime<br /><br />Conditionally returned                                                           | Date and time when the resource was created, in UTC.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />Format: yyyy-MM-ddThh:mm:ssZ                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           |
| expedite<br /><br />boolean<br /><br />Conditionally returned                                                                 | Indicates if expedited processing of this bulk card order was requested.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />`true`, `false`                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    |
| expiration\_offset<br /><br />object<br /><br />Conditionally returned                                                        | 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 />Conditionally returned                                               | 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 />Conditionally returned                                             | 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 />Returned                                                                             | Specifies certain physical characteristics of a card, as well as bulk shipment information.<br /><br />This object is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />`card_personalization`, `shipping`                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| 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.**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                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          |
| name\_line1\_end\_index<br /><br />integer<br /><br />Conditionally returned                                                  | This field is included if your bulk card order has been processed.<br /><br />You can use the `name_line1_start_index` and `name_line1_end_index` fields to identify the cards and users associated with the order. For example, if the start index is "1" and the end index is "3", the card tokens are "card-1", "card-2", and "card-3", and the user tokens are "user-1", "user-2", and "user-3".<br /><br />See <a href="/core-api/bulk-card-orders/#post_bulkissuances">Create bulk card order</a> for more information about the automatic generation and naming of cards and users.<br /><br />**Allowable Values:**<br /><br />Any positive integer                                                                                                                                                                                                                                             |
| name\_line1\_start\_index<br /><br />integer<br /><br />Conditionally returned                                                | This field is included if your bulk card order has been processed.<br /><br />You can use the `name_line1_start_index` and `name_line1_end_index` fields to identify the cards and users associated with the order. For example, if the start index is "1" and the end index is "3", the card tokens are "card-1", "card-2", and "card-3", and the user tokens are "user-1", "user-2", and "user-3".<br /><br />See <a href="/core-api/bulk-card-orders/#post_bulkissuances">Create bulk card order</a> for more information about the automatic generation and naming of cards and users.<br /><br />**Allowable Values:**<br /><br />Any positive integer                                                                                                                                                                                                                                             |
| name\_line\_1\_numeric\_postfix<br /><br />boolean<br /><br />Conditionally returned                                          | If set to `true`, the unique numeric postfix appended to each card’s token field is also appended to the card’s `fulfillment.card_personalization.text.name_line_1.value` field.<br /><br />**Allowable Values:**<br /><br />`true`, `false`                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            |
| name\_line\_1\_random\_postfix<br /><br />boolean<br /><br />Conditionally returned                                           | If set to `true`, the unique random postfix appended to each card’s token field is also appended to the card’s `fulfillment.card_personalization.text.name_line_1.value` field.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />`true`, `false`                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| provider\_ship\_date<br /><br />datetime<br /><br />Conditionally returned                                                    | Date and time when the card provider shipped the bulk card order, in UTC.<br /><br />This field is included if your bulk card order has shipped.<br /><br />**Allowable Values:**<br /><br />Format: yyyy-MM-ddThh:mm:ssZ                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               |
| provider\_shipping\_method<br /><br />string<br /><br />Conditionally returned                                                | Shipping method used by the card provider. `United_Postal_Service`, for example.<br /><br />This field is included if your bulk card order has shipped.<br /><br />**Allowable Values:**<br /><br />String                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              |
| provider\_tracking\_number<br /><br />string<br /><br />Conditionally returned                                                | A tracking number is included only if your card provider is Arroweye Solutions.<br /><br />This field is included if your bulk card order has shipped.<br /><br />**Allowable Values:**<br /><br />String                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               |
| token<br /><br />string<br /><br />Returned                                                                                   | Unique identifier of the bulk card order.<br /><br />**Allowable Values:**<br /><br />1–36 chars                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        |
| user\_association<br /><br />object<br /><br />Conditionally returned                                                         | Associates each card with a user.<br /><br />**Allowable Values:**<br /><br />`single_inventory_user`, `single_inventory_user_token`                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    |
| user\_association.**single\_inventory\_user**<br /><br />boolean<br /><br />Conditionally returned                            | Set to `true` to associate all cards with the same user. Set to `false` to associate each card with a different user. When set to `false`, users are generated automatically and associated with the cards.<br /><br />**Allowable Values:**<br /><br />`true`, `false`<br /><br />**Default value:**<br />`false`                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      |
| user\_association.**single\_inventory\_user\_token**<br /><br />string<br /><br />Conditionally returned                      | If `single_inventory_user=true`, use this field to specify the token of an existing user. All cards in the order will be associated with this user.<br /><br />**Allowable Values:**<br /><br />1–36 chars                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              |

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

```json JSON expandable lines wrap theme={null}
{
  "token": "bulk_06_token",
  "expedite": false,
  "fulfillment": {
    "shipping": {
      "method": "UPS_REGULAR",
      "return_address": {
        "first_name": "Shipping",
        "last_name": "R_US",
        "address1": "1222 Blake Street",
        "city": "Berkeley",
        "state": "CA",
        "postal_code": "94702",
        "country": "USA",
        "phone": "5102222222"
      },
      "recipient_address": {
        "first_name": "Saki",
        "last_name": "Dogger",
        "address1": "1255 Lake Street",
        "city": "Oakland",
        "state": "CA",
        "postal_code": "94611",
        "country": "USA",
        "phone": "510-333-3333"
      }
    },
    "card_personalization": {
      "text": {
        "name_line_1": {
          "value": "Saki Dogger"
        },
        "name_line_2": {
          "value": "Aegis Fleet Services"
        }
      },
      "carrier": {
        "name": "my_carrier_logo.png",
        "message_line": "my message"
      },
      "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_card_product_02",
  "card_allocation": 3,
  "user_association": {
    "single_inventory_user": false
  },
  "name_line_1_numeric_postfix": true,
  "expiration_offset": {
    "unit": "YEARS",
    "value": 10
  },
  "created_time": "2022-03-06T00:06:34Z",
  "name_line1_start_index": 1,
  "name_line1_end_index": 3,
  "card_fulfillment_time": "2022-03-07T23:59:44Z",
  "provider_ship_date": "2022-03-08T00:00:00Z",
  "provider_shipping_method": "United_Parcel_Service",
  "provider_tracking_number": "982247",
  "api": "bulkissuances",
  "endpoint": "/bulkissuances/{token}",
  "method": "get",
  "cp_id": 1,
  "bc_id": 1
}
```
