v1
latestOpenAPI 3.1.0Copyright Pismo2026-07-247702,7523.1 MBCards
Get cards for customer and account
Get cards for specified account and customer with paging and filter options.
Accounts can have multiple customers, typically to accommodate primary and additional cardholders, but only one owner. There can only be one physical card per customer. A customer can have multiple virtual cards, but the card names have to be different.
get/wallet/v1/customers/{customerId}/accounts/{accountId}/cards
Path parameters
customerIdstring required
Customer ID
accountIdinteger required
Pismo account ID
Query parameters
pagestring
Page number. Default is initial page - 0. To navigate between pages, set format=paged.
perPagestring
Cards per page. Default is 10. To navigate between pages, set format=paged.
format'paged'
Set to paged to use paging for results.
statusstring[]
Card status filter:
- If nothing is passed, cards with status CREATED, NORMAL, and BLOCKED are returned.
- If ALL is passed, all cards, regardless of status, are returned.
- If one or more specific statuses are passed, cards with those statuses are returned.
Refer to the Card lifecycle and statuses guide for more information and a complete status list.
modesstring[]
Filter results using card mode.
- If nothing is passed, all cards are returned.
- If one or more specific modes are passed, cards with those modes are returned.
typesstring[]
Card type filter:
- If nothing is passed, all cards are returned.
- If one or more specific types are passed, cards with those types are returned.
Response
CardInfoResponse object array
Example response
[
{
"id": 6743052,
"hash": "WEPvOQuZvjfYEd0iBmr43bhWyOsylIsW95ebYrLD89App2iEq9IizP+8w73pxKQ4mI47EdhzYHF9RfXjrBOyug==",
"status": "ACTIVE",
"printed_name": "Sarah Toga",
"name": "Vacation card",
"type": "PLASTIC",
"bin": "87634277",
"brand": "Visa",
"template_id": "EAFA693A-57B2-4029-97F3-D20D6F06D79B",
"program_id": 1010,
"issuing_date": "2019-07-03T17:23:18Z",
"transaction_limit": "500.00",
"expiration_date": "2803",
"last_4_digits": "5684",
"track_number": 1,
"reissued_card_id": 123456,
"password_tries": 1,
"abu_enabled": true,
"embossing_custom_field": "Tracking ID = 5859930",
"mode": "CREDIT",
"validity_period_hours": 240,
"valid_until": "2021-07-03T17:23:18Z",
"metadata": "{ \"key\": \"value\"}"
}
]