v1

latestOpenAPI 3.1.0Copyright Pismo2026-07-247702,7523.1 MB
Card 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

descriptionstring

Reissue reason description

must_blockboolean

Should a PLASTIC card be canceled upon reissue or can it be used until the new card is activated?

VIRTUAL cards are automatically canceled when reissued, regardless of this setting.

must_chargeboolean

Should the reissue be charged?

This field is information only as only issuers can make debit entries to a customer's account.

costnumber

Reissue card cost

typestring

Issuer-defined reissue reason enum

enabledboolean

Is reason active?

This field is for information only and allows the issuer to provide only active reasons for re-issuance.

Example request

{
  "description": "Card was lost by the customer",
  "must_block": true,
  "must_charge": true,
  "cost": 20.5,
  "enabled": true
}

Response

Success

idinteger

Reissue reason identifier. You can get reason IDs using the List reissue reasons endpoint. The must_block flag comes from the reissue reason object.

descriptionstring

Reissue reason description

must_blockboolean

Should a PLASTIC card be canceled upon reissue or can it be used until the new card is activated?

VIRTUAL cards are automatically canceled when reissued, regardless of this setting.

must_chargeboolean

Should the reissue be charged?

This field is information only as only issuers can make debit entries to a customer's account.

costnumber

Reissue card cost

typestring

Issuer-defined reissue reason enum

enabledboolean

Is reason active?

This field is for information only and allows the issuer to provide only active reasons for re-issuance.

Example response

{
  "id": 123,
  "description": "Card was lost by the customer",
  "must_block": true,
  "must_charge": true,
  "cost": 20.5,
  "enabled": true
}