Unfreeze Card
Card
Unfreeze Card
Reactivate a frozen card to resume transaction authorizations
POST
Unfreeze Card
Overview
Reactivates a frozen card, restoring full functionality and allowing transaction authorizations to resume. This endpoint reverses the freeze action, changing the card status fromFROZEN back to ACTIVE.
Immediate RestorationUnfreezing a card takes effect immediately. The card can be used for transactions within seconds of successful unfreezing.
When to Use
Issue Resolved
Suspicious activity has been investigated and resolved
Card Found
Previously misplaced card has been located
Resume Spending
User wants to enable the card after voluntary freeze
Subscription Payment
Need to unfreeze before recurring payment date
Authentication
This endpoint requires authentication via Bearer token:Request
Headers
string
required
Your public API client key
boolean
default:false
Set to
true to route requests to the US backend environmentstring
required
Bearer token for authentication
Request Example
Response
Success Response
boolean
Indicates whether the card was successfully unfrozenValue: Always
true on successful unfreezeError Responses
What Happens When a Card is Unfrozen?
1
Status Change
The card status changes from
FROZEN to ACTIVE immediately2
Transaction Authorization
The card can now authorize transactions including:
- Point-of-sale purchases (online and in-store)
- ATM withdrawals
- Recurring subscription payments
- Pre-authorized transactions
3
Immediate Availability
Transactions can be processed within seconds. Payment processors typically recognize the status change within 1-2 seconds.
Common Error Scenarios
Card Not Frozen
Card Not Frozen
Error:
400 Bad RequestMessage: "Card is not frozen"Cause: Attempting to unfreeze a card that is already ACTIVE or BLOCKEDSolution: Check card status first using GET /v1/card/status before attempting to unfreezeCannot Unfreeze BLOCKED Card
Cannot Unfreeze BLOCKED Card
Error:
400 Bad RequestCause: Card has BLOCKED status (permanently disabled)Solution: Blocked cards cannot be unfrozen. User must order a new card via POST /v1/card/orderMissing Authentication
Missing Authentication
Error:
401 UnauthorizedCause: Missing or invalid Bearer tokenSolution: Ensure valid access token is included in Authorization headerUse Case Examples
Card Found After Loss
Scheduled Unfreeze Before Subscription
Safe Unfreeze with Status Check
Best Practices
User Confirmation
Status Verification
UI State Management
Freeze/Unfreeze Toggle Component
Testing
Sandbox Testing
Important Notes
Real-Time EffectCard unfreezing takes effect immediately. Payment processors recognize the status change within 1-2 seconds, allowing near-instant transaction processing.
IdempotencyCalling this endpoint on an already active card will return a
400 Bad Request error. Check card status first if unsure of the current state.Related Endpoints
POST /v1/card/freeze- Freeze an active card to prevent transactionsGET /v1/card/status- Check current card statusGET /v1/card/transactions- View transaction historyPOST /v1/card/order- Order a replacement card (for blocked cards)