Skip to content
Esc
navigateopen⌘Jpreview
Dashboard

Get OAuth login info

Retrieves information about the OAuth2 login

GET/{apiBasePath}/oauth/logininfo
Path parameters
apiBasePathstringrequired
Its value depends on the apiBasePath set by the user
Query parameters
loginChallengestringrequired
Responses
200Information about the current login flow
One of:
object
statusstatusOKrequired
Success status indicator
Allowed:OK
infoobjectrequired
Information about the current login flow
Show properties
clientIdstringrequired
The ID of the client.
clientNamestring
The name of the client.
tosUristring
The URI of the client's terms of service.
policyUristring
The URI of the client's privacy policy.
logoUristring
The URI of the client's logo.
clientUristring
The URI of the client we can link to on the login page
generalErrorResponse
statusstring
Error status code
Allowed:GENERAL_ERROR
messagestring
Error message
400OAuth2 specific error response
errorstring
The OAuth2 error code
error_descriptionstring
Human readable error description
404Resource not found error
string
500Internal server error
string
Try it
Server
Parameters
Request
curl -X GET "/auth/oauth/logininfo?loginChallenge=string"
Response
{
  "status": "OK",
  "info": {
    "clientId": "string",
    "clientName": "string",
    "tosUri": "string",
    "policyUri": "string",
    "logoUri": "string",
    "clientUri": "string"
  }
}

API reference

API schema and response details