POST
/
merchant
/
auth
/
sso
/
passwordSetup
curl --request POST \
  --url https://api.unibee.top/merchant/auth/sso/passwordSetup \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "email": "<string>",
  "newPassword": "<string>",
  "setupToken": "<string>"
}'
{
  "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

Member Password Setup

email
string
required

The merchant member email address

newPassword
string
required

The new password

setupToken
string
required

The merchant member password setup token

Response

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