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>"
}
Password forget OTP process, verify OTP code
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>"
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Password forget OTP process, verify OTP code
The response is of type object
.