Skip to main content
POST
/
v1
/
cards
/
{id}
/
activate
Activate a card
curl --request POST \
  --url https://api-global.fastpaybrasil.com/v1/cards/{id}/activate \
  --header 'Authorization: Basic <encoded-value>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "activationValue": "1.50"
}
'
{
  "id": "2RhQg9M7ZCg3X3nMb9W1kX8Q",
  "status": "active",
  "message": "Card activated successfully"
}

Authorizations

Authorization
string
header
required

HTTP Basic authentication. Use your secret key as the username and an empty string as password. The API key should be base64 encoded in the format 'username:' when sending the Authorization header.

Path Parameters

id
string
required

Unique card identifier

Body

application/json
activationValue
string
required

The test transaction amount shown on the card statement (e.g., "1.50"). Enter the exact decimal value, NOT in cents.

Example:

"1.50"

Response

Card activated successfully

id
string

Card ID

Example:

"2RhQg9M7ZCg3X3nMb9W1kX8Q"

status
string
Example:

"active"

message
string
Example:

"Card activated successfully"