v1
latestOpenAPI 3.1.0Copyright Pismo2026-07-247702,7523.1 MBReissue card
Reissue a physical (plastic/metal) or virtual card for a given customer/account.
For information on card reissue scenarios and statuses, refer to the Card reissuing guide.
This endpoint generates a Card updated event for the old card, and a Card created event for the new card. The Card created event is generated asynchronously - any operation that tries to access a card before this event, such as update password or get PCI information, is going to return a 404, not found error.
Notes:
- If an attempt is made to reissue a card that has already been reissued, the new card's data created in the previous reissue is returned, that is, another card is not created and events are not generated.
- To update the new card with the old card's PIN, call Get password for the old card, then update the new card's password with Change card password
- To transfer tokens to the new card, set the update_tokens field to true. You can also do this later with the Transfer card tokens to other card endpoint.
- Currently, there is no way to transfer a card's PAN
- This endpoint takes an account token - an access token encoded with a Pismo account ID.
Path parameters
Customer ID
Pismo account ID
Pismo card ID
Headers
A unique identifier to ensure the operation remains idempotent, allowing for operation repetition without causing unintended effects or duplication. An idempotent operation is one that can be applied multiple times, yet the outcome remains the same. it ensures that network errors, retries, or failures can occur without introducing inconsistencies. 36 chars max.
Request body
Example request
{
"reason_id": 123,
"printed_name": "Sarah Toga",
"cvv_rotation_interval_hours": 24,
"embossing_group": "EM1-embosser",
"embossing_custom_field": "Tracking ID = 5859930",
"metadata": "{ \"key\": \"value\"}",
"abu_enabled": true,
"template_id": "EAFA693A-57B2-4029-97F3-D20D6F06D79B",
"mode_type": "COMBO",
"update_tokens": true,
"status": "PENDING",
"brand": "VISA",
"generate_pvv": true,
"expiration_date": "2803",
"validity_period_hours": 240
}Response
Reissue card response
Example response
{
"id": 6743052,
"status": "CREATED",
"stage": "BLOCKED",
"issuing_date": "2022-01-07T14:29:19Z",
"expiration_date": "2027-01-07T14:29:19Z",
"printed_name": "Mabel Syrup",
"card_type": "PLASTIC",
"name": "PLASTIC",
"mode": "CREDIT",
"track_number": 2,
"program": {
"id": "8519"
},
"account": {
"id": 102378693
},
"customer": {
"id": 102377856
},
"org": {
"id": "TN-f878e4a1-2879-48ba-be16-821e73ac98db"
},
"contactless_enabled": true,
"abu_enabled": true,
"embossing_custom_field": "Use metal"
}