Discovery Endpoint
GET/v3/service/extension/oidc/:organisationId/.well-known/openid-configuration
OpenID Provider configuration endpoint that returns the OpenID Provider metadata as a JSON document
Request
Path Parameters
organisationId stringrequired
The ID of the organisation
Responses
- 200
OpenID Connect configuration
Response Headers
- application/json
- Schema
- Example (from schema)
Schema
issuer string
The URL of the OpenID Provider
authorization_endpoint string
The URL of the authorisation endpoint
token_endpoint string
The URL of the token endpoint
userinfo_endpoint string
The URL of the userinfo endpoint
jwks_uri string
The URL of the JSON Web Key Set
scopes_supported string[]
The scopes supported by the OpenID Provider
response_types_supported string[]
The response types supported by the OpenID Provider
grant_types_supported string[]
The grant types supported by the OpenID Provider
subject_types_supported string[]
The subject types supported by the OpenID Provider
id_token_signing_alg_values_supported string[]
The signing algorithms supported for the ID token
{
"issuer": "string",
"authorization_endpoint": "string",
"token_endpoint": "string",
"userinfo_endpoint": "string",
"jwks_uri": "string",
"scopes_supported": [
"string"
],
"response_types_supported": [
"string"
],
"grant_types_supported": [
"string"
],
"subject_types_supported": [
"string"
],
"id_token_signing_alg_values_supported": [
"string"
]
}
Loading...