Skip to main content
POST
/
api
/
svc
/
v1
/
users
/
is-registered
Check user registration
curl --request POST \
  --url https://{controlPlaneURL}/api/svc/v1/users/is-registered \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "email": "user@example.com"
}
'
{
  "isRegistered": true
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json
email
string
required

Email address to check registration status for.

Example:

"user@example.com"

Response

200 - application/json

Registration status of the user.

isRegistered
boolean
required

True if the user is registered in the current tenant.