Skip to main content
POST
/
merchant
/
user
/
change_email
Change User Email
curl --request POST \
  --url https://api.unibee.top/merchant/user/change_email \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "externalUserId": "<string>",
  "newEmail": "<string>",
  "userId": 123
}'
{
  "code": 123,
  "data": {},
  "message": "<string>",
  "redirect": "<string>",
  "requestId": "<string>"
}

Authorizations

Authorization
string
header
required

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

Body

application/json
newEmail
string<string>
required

Target Email want to change

externalUserId
string<string>

The externalUserId of user, either ExternalUserId or UserId needed

userId
integer

The id of user, either ExternalUserId or UserId needed

Response

200 - application/json
code
integer
data
object
message
string<string>
redirect
string<string>
requestId
string<string>
I