/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": "string"
}| Field | Type | Description |
|---|---|---|
ott | string | One-time token. Redeemable in the auth app to complete sign-in. |
expiresAt | string | ISO-8601 expiry timestamp for the OTT. |
authUrl | string | Full URL pointing at the auth app where the user completes sign-in. |
{
"ott": "string",
"expiresAt": "string",
"authUrl": "string"
}| 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": []
}