Checks if an account exists
Checks if an account exists with the given email or username (not necessarily the same account has to have that email and username at the same time)
Headers
-
Specify effective organization_id for Admin and Group Organization Admins. This is a global header for all endpoints only taken into consideration when it makes sense (it won't be used in Auth, for example)
Body
-
account_email string
POST /signup/check
curl \
-X POST http://127.0.0.1:8080/signup/check \
-H "Content-Type: application/json" \
-d '{"account_email":"string"}'
Request examples
# Headers
# Payload
{
"account_email": "string"
}
Response examples (200)
{
"account_email_exists": true
}