> For the complete documentation index, see [llms.txt](https://docs.payments.thalescloud.io/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.payments.thalescloud.io/central-issuance/implement-central-issuance/card-order/select-card-order-services.md).

# Select card order services

Use these D1 API fields to control how a physical card is produced and shipped.

Field names and nesting can vary by endpoint. This page uses the naming from the Physical Issuance API.

### Required parameters

* `cardProductId` (string): Card product identifier.
* `services.issuance` (string): Issuance type.
  * `CREATION`: Create a new card for a new end user.
  * `RENEWAL`: Renew a card before expiry.
  * `REPLACEMENT`: Replace a card (for example, lost or stolen).

### Optional parameters

* `distributionChannel` (string): Where the card is personalized. Default: `THALES`.
  * `THALES`: Personalize in a Thales personalization center.
  * `INSTANT`: Personalize instantly in a branch.
  * `CENTRAL`: Personalize in issuer premises or a partner center.
* `services.priority` (string): Priority level used to refine `services.issuance`.
* `services.delivery` (string): Shipment method. Default: `NO_SHIPMENT`.\
  See [Shipment](/central-issuance/implement-central-issuance/card-order/shipment.md).
* `services.cardCarrier` (string): Card carrier identifier. Default: `NO_CARRIER`.\
  See [Card carrier](/central-issuance/implement-central-issuance/card-order/card-carrier-personalization.md).
* `services.packaging` (string): Packaging identifier. Default: `NO_PACK`.\
  See [Packaging](/central-issuance/implement-central-issuance/card-order/packaging.md).
* `services.pinMailer` (boolean): When `true`, produce and ship a PIN mailer. Default: `false`.\
  PIN mailers are typically sent about 2 business days after card shipment.
* `services.alphaCard` (boolean): When `true`, produce a sample card in the Production Environment. Default: `false`.

### Example

```json
{
  "cardProductId": "cp_12345",
  "distributionChannel": "THALES",
  "services": {
    "issuance": "CREATION",
    "delivery": "NO_SHIPMENT",
    "pinMailer": false
  }
}
```


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.payments.thalescloud.io/central-issuance/implement-central-issuance/card-order/select-card-order-services.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
