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>"
}'Check if a user is registered with the platform
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?