POST
/
merchant
/
auth
/
sso
/
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
required

The merchant owner's email address

firstName
string
required

The merchant owner's first name

lastName
string
required

The merchant owner's last name

password
string
required

The owner's password

countryCode
string

Country Code

countryName
string

Country Name

phone
string

The owner's Phone

userName
string

The owner's UserName

Response

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