Checks if an account exists

POST /signup/check

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)

application/json

Responses

POST /signup/check
curl \
 -X POST http://localhost: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
}