POST
/
merchant
/
auth
/
sso
/
register
Register
curl --request POST \
  --url https://api.unibee.top/merchant/auth/sso/register \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "countryCode": "<string>",
  "countryName": "<string>",
  "email": "<string>",
  "firstName": "<string>",
  "lastName": "<string>",
  "password": "<string>",
  "phone": "<string>",
  "userName": "<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

Register with owner permission, send email with OTP code

email
string<string>
required

The merchant owner's email address

firstName
string<string>
required

The merchant owner's first name

lastName
string<string>
required

The merchant owner's last name

password
string<string>
required

The owner's password

countryCode
string<string>

Country Code

countryName
string<string>

Country Name

phone
string<string>

The owner's Phone

userName
string<string>

The owner's UserName

Response

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