v1
latestOpenAPI 3.1.0Copyright Pismo2026-07-247702,7523.1 MBCard reissue
Update reissue reason
Updates an existing reissue reason.
At least one field must be provided. Only the fields provided will be updated.
patch/cards/v1/reissue/reasons/{id}
Path parameters
idinteger required
Reissue reason identifier. You can get reason IDs using the List reissue reasons endpoint. The must_block flag comes from the reissue reason object.
Request body
Example request
{
"description": "Card was lost by the customer",
"must_block": true,
"must_charge": true,
"cost": 20.5,
"enabled": true
}Response
Success
Example response
{
"id": 123,
"description": "Card was lost by the customer",
"must_block": true,
"must_charge": true,
"cost": 20.5,
"enabled": true
}