Skip to main content
POST
/
merchant
/
auth
/
sso
/
register_email_check
Register Email Check
curl --request POST \
  --url https://api.unibee.dev/merchant/auth/sso/register_email_check \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "email": "<string>"
}'
{
  "code": 123,
  "data": {
    "valid": true
  },
  "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

Check Register Email

email
string<string>
required

The merchant owner's email address

Response

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