Skip to main content
POST
/
user
/
save
Update User Profile
curl --request POST \
  --url https://api.boosterberg.com-beta.com/v1/user/save \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "email": "<string>",
  "phone_number": "<string>",
  "phone_country": "<string>",
  "password": "<string>"
}
'
{
  "result": true,
  "message": "Verification email has been sent."
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json
email
string
required
phone_number
string
phone_country
string

ISO country code for phone number

password
string

New password (min 8 characters)

Response

200 - application/json

Returns Boolean

result
boolean
message
string
Example:

"Verification email has been sent."