Skip to main content
POST
/
physical-cards
/
{id}
/
activate
Activate a physical card
curl --request POST \
  --url https://business.bfinance.app/external/api/physical-cards/{id}/activate \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "cardType": "budget",
  "code": "1234-5678"
}
'
{
  "status": "success",
  "message": "Physical card has been activated"
}

Authorizations

Authorization
string
header
required

JWT authentication token

Path Parameters

id
string
required

ID of the card to be activated

Body

application/json
cardType
enum<string>
required

Type of the card ("budget" or "prepaid")

Available options:
budget,
prepaid
Example:

"budget"

code
string
required

Activation code for the physical card

Example:

"1234-5678"

Response

Successfully activated the physical card

status
string
Example:

"success"

message
string
Example:

"Physical card has been activated"