Get Auth Request
Get OIDC Auth Request details by ID, obtained from the redirect URL. Returns details that are parsed from the application's Auth Request.
Required permissions:
session.read
Path Parameters
The ID of the Auth Request, as obtained from the redirect URL.
Response Body
application/json
curl -X GET "https://loading/v2/oidc/auth_requests/string"{
"authRequest": {
"id": "string",
"creationDate": "2023-01-15T01:30:15.01Z",
"clientId": "string",
"scope": [
"string"
],
"redirectUri": "string",
"prompt": [
"PROMPT_UNSPECIFIED"
],
"uiLocales": [
"string"
],
"loginHint": "string",
"maxAge": "string",
"hintUserId": "string"
}
}Was this page helpful?
Create Callback
Create Callback: Finalize an Auth Request and get the callback URL for success or failure. The user must be redirected to the URL in order to inform the application about the success or failure. On success, the URL...
Get Device Authorization Request
Get Device Authorization Request: Get the device authorization based on the provided 'user code'. This will return the device authorization request, which contains the device authorization id that is required to authorize the reque...