Sandbox version
For experimental use only. Proceed with caution.
auth
Start interactive sign-in
get
/auth
operationId: auth-basic

Public 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.

Try it now
Response · 200
{
  "ott": "string",
  "expiresAt": "string",
  "authUrl": "https://example.com"
}
Responses
200
application/json
Successful response
FieldTypeDescription
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.
Example
Json
{
  "ott": "string",
  "expiresAt": "string",
  "authUrl": "https://example.com"
}
400
application/json
Invalid input data
FieldTypeDescription
message
string
The error message
code
string
The error code
issues
object[]
An array of issues that were responsible for the error
issues[].message
string
Example
Json
{
  "code": "BAD_REQUEST",
  "message": "Invalid input data",
  "issues": []
}
404
application/json
Not found
FieldTypeDescription
message
string
The error message
code
string
The error code
issues
object[]
An array of issues that were responsible for the error
issues[].message
string
Example
Json
{
  "code": "NOT_FOUND",
  "message": "Not found",
  "issues": []
}
500
application/json
Internal server error
FieldTypeDescription
message
string
The error message
code
string
The error code
issues
object[]
An array of issues that were responsible for the error
issues[].message
string
Example
Json
{
  "code": "INTERNAL_SERVER_ERROR",
  "message": "Internal server error",
  "issues": []
}