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 https://api-dev.gatego.io:443/signup/check \
 -H "Authorization: Bearer $ACCESS_TOKEN" \
 -H "Content-Type: application/json" \
 -d '{"account_email":"string","account_username":"string"}'
Request example
# Headers

# Payload
{
  "account_email": "string",
  "account_username": "string"
}
Response examples (200)
{
  "account_email_exists": true,
  "account_username_exists": true
}