Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Body
application/json
Email of the user to check
curl --request POST \
  --url https://{controlPlaneURL}/api/svc/v1/users/is-registered \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "email": "<string>"
}'curl --request POST \
  --url https://{controlPlaneURL}/api/svc/v1/users/is-registered \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "email": "<string>"
}'Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Email of the user to check
Was this page helpful?