curl --request PUT \
--url https://api-staging.boost.xyz/users/address/{address} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"name": "<string>",
"email": "<string>"
}'
{
"registeredEmail": true
}
This endpoint updates a user’s profile.
curl --request PUT \
--url https://api-staging.boost.xyz/users/address/{address} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"name": "<string>",
"email": "<string>"
}'
{
"registeredEmail": true
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Success
The response is of type object
.