Skip to main content
POST
/
cards
/
{id}
/
activate
Activate physical card
curl --request POST \
  --url https://sandbox.api.reap.global/cards/{id}/activate \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --header 'Reap-Version: <reap-version>' \
  --data '
{
  "activationCode": "<string>"
}
'
{
  "error": {
    "code": "<string>",
    "message": "<string>",
    "detail": {}
  }
}

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
Example:

"2025-02-14"

Path Parameters

id
string<uuid>
required

Body

Request body for activating a physical card

activationCode
string
required

The 6-digit activation code from the card mailer. Use GET /cards/:id/activation-code only if the code was lost.

Pattern: ^[0-9]{6}$

Response

Response for status 400

Card cannot be activated in its current state

error
object
required