Skip to main content
POST
/
api
/
user
/
update
Update user
curl --request POST \
  --url https://api.sandbox.bitwage.com/api/user/update \
  --header 'Authorization: Basic <encoded-value>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "user_id": "<string>",
  "email": "jsmith@example.com",
  "phone_number": "<string>",
  "phone_country": "<string>",
  "first_name": "<string>",
  "last_name": "<string>",
  "date_of_birth": "<string>",
  "street_address": "<string>",
  "street_address_2": "<string>",
  "city": "<string>",
  "state": "<string>",
  "zip": "<string>",
  "country": "<string>"
}
'
{
  "success": true
}

Authorizations

Authorization
string
header
required

API key authentication. Include your access token as: Authorization: Basic <ACCESS_TOKEN>

Body

application/json
user_id
string
required
email
string<email>
phone_number
string
phone_country
string
first_name
string
last_name
string
date_of_birth
string
street_address
string
street_address_2
string
city
string
state
string
zip
string
country
string

Response

200 - application/json

User updated successfully.

success
boolean