# Order a PIN Reprint
source: https://developer.mastercard.com/mastercard-processing-core/documentation/sandbox-testing/pin-management/order-pin-reprint/index.md

## Test case -- Success {#test-case--success}

This test case describes ordering a PIN reprint for an existing physical card.


Note: The test case does not describe the end-to-end payload encryption used for every API operation in the Sandbox environment. Refer to [Encryption](https://developer.mastercard.com/mastercard-processing-core/documentation/api-basics-section/encryption/index.md) for more information. For this test case, use the following information in the request:

<br />

|     Field     | Available value |
|---------------|-----------------|
| `reissueType` | REPRINT         |

**Sample request**

`POST /cards/70001/plastics`

```JSON
{
  "newCardExpiryDate": "3004",
  "newCbsNumber": "CBS15863242747061",
  "reissueType": "REPRINT"
}
```

**Sample response**

`201`  

`Location: /cards/70001`

```JSON
{
    "newCardContractId": 70001,
    "newCardContractNumber": "535555______5312",
    "newCardExpiryDate": "3004",
    "newSequenceNumber": "2",
    "plasticId": 2188792
}
```

