# Retrieve a List of Card Plastics
source: https://developer.mastercard.com/mastercard-processing-core/documentation/sandbox-testing/data-management/query-cms-to-get-particular-data/retrieve-list-of-card-plastics/index.md

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

This test case describes retrieving a list of `Plastic` stored in the CMS for a specified card contract.

**Sample request**

`GET /cards/70001/plastics`

**Sample response**

`200`

```JSON
{
    "cardContractPlastics": [
        {
            "cardContractId": 70001,
            "cardContractNumber": "123456______3456",
            "cardExpiryDate": "3004",
            "chipScheme": "BNK ADVANCE DEBIT",
            "companyName": "Company",
            "effectiveDate": "2021-06-25",
            "embossedName": "MR JOHN DOE",
            "orderSource": "Office A",
            "orderTarget": "Target Office",
            "personalizationFileName": "PM_REQ_0018__20200129_000003MDSDEU.xml",
            "plasticId": 2188792,
            "productionCode": "RALLRE",
            "productionDate": "2021-06-25",
            "productionEvent": "Produce Card",
            "productionReason": "Replace All - Renew",
            "productionType": "Replace All",
            "sequenceNumber": "2",
            "status": "Closed"
        },
        {
            "cardContractId": 70001,
            "cardContractNumber": "123456______3456",
            "cardExpiryDate": "3004",
            "chipScheme": "BNK ADVANCE DEBIT",
            "companyName": "Company",
            "effectiveDate": "2021-06-25",
            "embossedName": "MR JOHN DOE",
            "orderSource": "Office A",
            "orderTarget": "Target Office",
            "personalizationFileName": "PM_REQ_0018__20200129_000003MDSDEU.xml",
            "plasticId": 2188793,
            "productionCode": "RALLRE",
            "productionDate": "2021-06-25",
            "productionEvent": "Produce Card",
            "productionReason": "Replace All - Renew",
            "productionType": "Replace All",
            "sequenceNumber": "3",
            "status": "Closed"
        }
    ]
}
```

