> For the complete documentation index, see [llms.txt](https://docs.mybankone.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.mybankone.com/cards/cards-api/get-customer-cards.md).

# Get Customer Cards

To get customer cards make a post request by passing `Token`, `AccountNo`, and `CustomerID` in the request body to the get customer cards endpoint.

```
// Live URL
http://api.mybankone.com/thirdpartyapiservice/apiservice/
Cards/RetrieveCustomerCards
```

<mark style="color:green;">`POST`</mark> `https://staging.mybankone.com/thirdpartyapiservice/apiservice/Cards/ RetrieveCustomerCards`

#### Request Body

| Name                                         | Type   | Description                                                                          |
| -------------------------------------------- | ------ | ------------------------------------------------------------------------------------ |
| Token <mark style="color:red;">\*</mark>     | String | Authentication Key for the request                                                   |
| AccountNo<mark style="color:red;">\*</mark>  | String | Requesting customer’s account number                                                 |
| CustomerID<mark style="color:red;">\*</mark> | String | Card Request Type as retrieved from RetrieveInstitutionConfig Card Request Type List |

{% tabs %}
{% tab title="200: OK " %}

```javascript
{
 "isSuccessful": true,
 "ResponseDescription": "Card record(s) retrieved",
 "Cards": {[
    "AccountNumber":"0010011010000156",
    "CardPAN" : "506124*********5019",
    "LinkedDate" :" 2020-10-28T00:00:00",
    "ExpiryDate" : "2023-10-01T00:00:00",
    "SerialNo" : "5225454",
    "NameOnCard" : "okponyia chioma",
    "CardType":null,
    "Status": "Pending"
    
 ]}
}
```

{% endtab %}
{% endtabs %}
