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

Authorizations

Authorization
string
header
required

JWT authentication token

Path Parameters

id
string
required

ID of the card to update the email for

Body

application/json
email
string
required

The new email to associate with the card

Example:

"user@example.com"

Response

Successfully updated the email

status
string
Example:

"success"

message
string
Example:

"Email has been updated"