GET /.well-known/openid-configuration
GET
/.well-known/openid-configurationResponses
200OIDC provider metadata
authorization_endpointstringrequiredclaims_supportedstring[]requiredcode_challenge_methods_supportedstring[]requiredid_token_signing_alg_values_supportedstring[]requiredissuerstringrequiredjwks_uristringrequiredlenso_console_client_idstringrequiredresponse_types_supportedstring[]requiredscopes_supportedstring[]requiredsubject_types_supportedstring[]requiredtoken_endpointstringrequiredtoken_endpoint_auth_methods_supportedstring[]required404OIDC provider is not enabled
codestringrequiredcorrelation_idstring | nulldetailstringrequirederrorsProblemErrorDetail[]requiredShow propertiesHide properties
Array of
ProblemErrorDetailfieldstring | nullreasonstringrequirednext_actionsstring[] | nullrequest_idstring | nullstatusinteger<int32>requiredmin 100 · max 599
titlestringrequiredtypestringrequired500Invalid OIDC provider configuration
codestringrequiredcorrelation_idstring | nulldetailstringrequirederrorsProblemErrorDetail[]requiredShow propertiesHide properties
Array of
ProblemErrorDetailfieldstring | nullreasonstringrequirednext_actionsstring[] | nullrequest_idstring | nullstatusinteger<int32>requiredmin 100 · max 599
titlestringrequiredtypestringrequiredRequest
curl -X GET "/.well-known/openid-configuration"const response = await fetch("/.well-known/openid-configuration", {
method: "GET"
});import requests
response = requests.get(
"/.well-known/openid-configuration",
)Response
{
"authorization_endpoint": "string",
"claims_supported": [
"string"
],
"code_challenge_methods_supported": [
"string"
],
"id_token_signing_alg_values_supported": [
"string"
],
"issuer": "string",
"jwks_uri": "string",
"lenso_console_client_id": "string",
"response_types_supported": [
"string"
],
"scopes_supported": [
"string"
],
"subject_types_supported": [
"string"
],
"token_endpoint": "string",
"token_endpoint_auth_methods_supported": [
"string"
]
}{
"code": "string",
"correlation_id": "string",
"detail": "string",
"errors": [
{
"field": "string",
"reason": "string"
}
],
"next_actions": [
"string"
],
"request_id": "string",
"status": 0,
"title": "string",
"type": "string"
}{
"code": "string",
"correlation_id": "string",
"detail": "string",
"errors": [
{
"field": "string",
"reason": "string"
}
],
"next_actions": [
"string"
],
"request_id": "string",
"status": 0,
"title": "string",
"type": "string"
}