Skip to main content
POST
/
cards
/
{id}
/
phone
Update phone number
curl --request POST \
  --url https://business.bfinance.app/external/api/cards/{id}/phone \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "phone": "+1234567890"
}
'
{
  "status": "success",
  "message": "Phone has been updated"
}

Authorizations

Authorization
string
header
required

JWT authentication token

Path Parameters

id
string
required

ID of the card to update the phone number for

Body

application/json
phone
string
required

The phone number to be updated, in international format (e.g., +1234567890)

Example:

"+1234567890"

Response

Successfully updated the phone number for the card

status
string
Example:

"success"

message
string
Example:

"Phone has been updated"