Skip to main content
POST
/
cards
/
{id}
/
unfreeze
Unfreeze card
curl --request POST \
  --url https://api.rnbi.magent.finance/cards/{id}/unfreeze \
  --header 'Authorization: Bearer <token>' \
  --header 'Reap-Version: <reap-version>'
{
  "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "accountId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "type": "VIRTUAL",
  "status": "ACTIVE",
  "blockReason": {
    "type": "SUSPECTED_FRAUD_CVV",
    "message": "<string>"
  },
  "cardholderName": "<string>",
  "last4": "<string>",
  "createdAt": "<string>",
  "updatedAt": "<string>"
}

Authorizations

Authorization
string
header
required

API key as Bearer token

Headers

Reap-Version
enum<string>
required

API version (YYYY-MM-DD)

Available options:
2025-02-14

Path Parameters

id
string<uuid>
required

Response

Card resource

id
string<uuid>
required

Unique card identifier

accountId
string<uuid>
required

ID of the account the card belongs to

type
enum<string>
required

Card type (VIRTUAL or PHYSICAL)

Available options:
VIRTUAL,
PHYSICAL
status
enum<string>
required

Current card status

Available options:
ACTIVE,
FROZEN,
BLOCKED,
EXPIRED
blockReason
object
required

Block reason details (only present when status is BLOCKED)

cardholderName
string
required

Cardholder name displayed on card

last4
string
required

Last 4 digits of the card number. Use reveal endpoint for full details.

createdAt
string
required

ISO 8601 timestamp of creation

updatedAt
string
required

ISO 8601 timestamp of last update