AurionAI Docs

Resolve Email

Resolve tenant(s) for a given email. Always returns 200 (anti-enumeration).

POST
/api/v1/app/auth/resolve

Resolve tenant(s) for a given email. Always returns 200 (anti-enumeration).

Request Body

application/json

TypeScript Definitions

Use the request body type in TypeScript.

Response Body

application/json

application/json

curl -X POST "https://loading/api/v1/app/auth/resolve" \  -H "Content-Type: application/json" \  -d '{    "email": "string"  }'
{
  "tenants": [
    {
      "auth_method": "password",
      "logo_url": "string",
      "name": "string",
      "slug": "string",
      "sso_provider": "string"
    }
  ]
}
{
  "detail": [
    {
      "loc": [
        "string"
      ],
      "msg": "string",
      "type": "string"
    }
  ]
}