/authauth-basicPublic authentication endpoint. No API key or Bearer token is required. Returns a one-time token and authUrl for completing sign-in in the Auth app.
{
"ott": "string",
"expiresAt": "string",
"authUrl": "https://example.com"
}| Field | Type | Description |
|---|---|---|
ott | string | One-time token; redeem via the auth app to complete sign-in. |
expiresAt | string | OTT expiry as an ISO-8601 timestamp string (forwarded verbatim from core). |
authUrl | string | Browser URL the user should visit to redeem the OTT and complete sign-in. |
{
"ott": "string",
"expiresAt": "string",
"authUrl": "https://example.com"
}| Field | Type | Description |
|---|---|---|
message | string | The error message |
code | string | The error code |
issues | object[] | An array of issues that were responsible for the error |
issues[]. | string |
{
"code": "BAD_REQUEST",
"message": "Invalid input data",
"issues": []
}| Field | Type | Description |
|---|---|---|
message | string | The error message |
code | string | The error code |
issues | object[] | An array of issues that were responsible for the error |
issues[]. | string |
{
"code": "NOT_FOUND",
"message": "Not found",
"issues": []
}| Field | Type | Description |
|---|---|---|
message | string | The error message |
code | string | The error code |
issues | object[] | An array of issues that were responsible for the error |
issues[]. | string |
{
"code": "INTERNAL_SERVER_ERROR",
"message": "Internal server error",
"issues": []
}