Revoke a card
Last updated: August 27, 2025
If your cardholder reports their card as lost or stolen, or if there's confirmed fraudulent activity, you can revoke the card to permanently freeze it and automatically decline any new transactions. You can also schedule cards to be revoked automatically after a specified lifetime or date.
You do not need to suspend an active card before revoking it.
Note
Revoking a card is a one-way action. The card cannot be reactivated.
You can revoke a card using:
You must have on of the following user roles:
- Admin
- A custom role with the Manage Issuing datapermission
- Sign in to the Dashboard.
- Go to Issuing > Cards.
- Select the card you want to revoke.
- In the Card details page that appears, select Revoke card.
Call the Revoke a card endpoint, and provide the card ID prefixed with crd_ as the {cardId} path parameter.
In the request body, set the reason field to one of the following reasons for revoking the card:
- expired
- reported_lost
- reported_stolen
post
https://api.checkout.com/issuing/cards/{cardId}/revoke
To help decrease the likelihood of fraud, you can schedule cards to be revoked automatically using:
You can also set a revocation date or a lifetime value when you first issue a card.
Note
If you schedule a revocation date after the end of the card's lifetime, the card is revoked when it expires.
You must have on of the following user roles:
- Admin
- A custom role with the Manage Issuing datapermission
- Sign in to the Dashboard.
- Go to Issuing > Cards, and select the card you want to auto-revoke.
- On the Card details page, select the Revoke card dropdown, and then select Schedule revoke date.
- Select the revocation date, and then select Confirm. 
 A revocation timer appears next to the card summary on the Card details page.
- To update or remove the revocation date, select the date in the revocation timer. 
 To update, select a new date.
 To remove, select Clear.
- Select Confirm.
Call the Schedule card revocation endpoint, and provide the card ID prefixed with crd_ as the {cardId} path parameter.
In the request body, set the revocation_date field to the date when you want the card to be revoked, in YYYY-MM-DD format.
You can also use this endpoint to update the revocation date any time before it arrives.
post
https://api.checkout.com/issuing/cards/{cardId}/schedule-revocation
Call the Delete scheduled revocation endpoint, and provide the card ID prefixed with crd_ as the {cardId} path parameter.
delete
https://api.checkout.com/issuing/cards/{cardId}/schedule-revocation
After you've integrated the Card Management Android SDK or iOS SDK, you can revoke cards in your mobile app.
Follow these steps:
- Call the getCards()method to get a list of the cardholder's cards:
- Call the Card.possibleStateChanges()method to request the possible statuses you can change the card to:
- Complete the change to revokedstatus:
You can configure webhooks to be notified when cards are revoked: