Card Management Actions
Usecase 1: Card is marked as ‘Frozen’.
| Sandbox Simulation Data | Result |
|---|---|
Make a request to POST /v1/customer/id/<id>/issuance/card/id/<id>/freeze endpoint to freeze a card. Note: Card can either be Prepaid or Debit based on the card Id. | Call GET card/id/<id>/freeze endpoint to get details of a card.
Important Fields: "status": "FREEZED", "statusReason": "On user request - Suspected Fraudulent Activity" |
Usecase 2: Card is marked as ‘Active’ again, post unfreeze was initiated.
| Sandbox Simulation Data | Result |
|---|---|
Make a request to POST card/id/<id>/unfreeze endpoint to unfreeze a card. Note: Card can either be Prepaid or Debit based on the card Id. | Call GET card/id/<id>/unfreeze endpoint to get details of a card.
Important Fields: "status": "ACTIVE", "statusReason": "Activated Successfully" |
Usecase 3: Card is marked as ‘Blocked/Replace’.
| Sandbox Simulation Data | Result |
|---|---|
Make a request to POST card/id/<id>/replace endpoint to cancel a card. Note: Card can either be Prepaid or Debit based on the card Id. | Call GET card/id/<id>/replace endpoint to get details of a card.
Important Fields: "status": "CANCELLED", "statusReason": "Card terminated" New Card Issuance:
|
Updated about 6 hours ago