Check if user exists
Checks if a user exists by UID or email. This endpoint is public and is used to verify user existence before registration.
Query Parameters
- Type: stringuid
User UID to check
- Type: stringemail
User email to check
Responses
- application/json
Request Example for get/v1/user-exists
curl 'https://api.signstack.ai/v1/user-exists?uid=&email='
{
"uidExists": true,
"emailExists": true
}