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