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

Password forget OTP process, verify OTP code

email
string
required

The merchant member email address

newPassword
string
required

The new password

verificationCode
string
required

OTP Code, received from email

Response

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