AurionAI Docs

Test Login

Issue a real JWT for E2E tests — no Azure AD / MSAL needed. The returned token is valid for the normal auth middleware (not dev bypass). Playwright stores it in localStorage as app_access_token.

POST
/api/v1/test/login

Issue a real JWT for E2E tests — no Azure AD / MSAL needed.

The returned token is valid for the normal auth middleware (not dev bypass). Playwright stores it in localStorage as app_access_token.

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/test/login" \  -H "Content-Type: application/json" \  -d '{    "tenant_id": "string"  }'
null
{
  "detail": [
    {
      "loc": [
        "string"
      ],
      "msg": "string",
      "type": "string"
    }
  ]
}