v1
latestOpenAPI 3.1.0Copyright Pismo2026-07-247702,7523.1 MBCard status
List card status history
Gets a list of a card's status history. The IDs of the card's account and org/tenant are parsed from the access token.
Note:
-
Only cards with status changes after September/2022 are returned.
-
This endpoint takes an account token - an access token encoded with a Pismo account ID.
For more information, refer to Card lifecycle and statuses.
get/wallet/v1/cards/{cardId}/status-history
Path parameters
cardIdstring required
Pismo card ID
Query parameters
pagestring
Page number. Default is initial page - 0. To navigate between pages, set format=paged.
perPagestring
Items per page. Default is 10.
Headers
x-customer-idinteger required
Pismo customer ID
Response
Array of card statuses.
Example response
{
"items": [
{
"status": "ACTIVE",
"previous_status": "NORMAL",
"event_datetime": "2021-07-03T17:23:18Z",
"operation": "ACTIVATE"
}
],
"currentPage": 1,
"perPage": 10,
"totalItems": 17,
"pages": 2
}