Skip to content

Unblock Card

Endpoint

PUT/api/v1/merchant/cards/{cardId}/unblock/

Use this endpoint to resume a card's activity on a previously BLOCKED card.

This endpoint reverses the BLOCKED status of a card and reactivates it for use. Cards may be blocked either due to: - Use of the Block Card API - Exceeding the maximum number of failed attempts for entering an incorrect PIN, CVV, or expiry date

📌 Note: - When a card is blocked due to failed attempts, you will receive a card_status webhook notification. - Use this endpoint to unblock the card and restore its ability to make payments.

Path Parameters

Name Type Required Description
cardId string ✅ The unique identifier for the card whose status you want to change from BLOCKED to ACTIVE.

Example Request

PUT /api/v1/merchant/cards/{cardId}/unblock/

Response

{
  "message": "Card successfully unblocked"
}

Response Codes

Status Code Description
200 OK Card successfully unblocked and reactivated.
400 Bad Request Invalid request parameters.
401 Unauthorized Authentication failed.
404 Not Found Card not found.
500 Internal Server Error Server error.