Skip to main content

Fetch OIDC Configuration for an OIDC identity provider

POST 

/api/web/v1/identityproviders/oidc/configuration

Fetch OIDC Configuration for an OIDC identity provider. Caller requires the IDENTITYPROVIDERS:VIEW permission.

Request

Body

required

    issuerUrl stringrequired

    The issuer URL of the OIDC/OAuth identity provider.

Responses

Successful

Schema

    authorizationEndpoint string

    The authorization endpoint of the external OIDC identity provider.

    claimsSupported string[]

    A list of claims supported by the external OIDC identity provider.

    jwksUri string

    The JWKS URI endpoint of the external OIDC identity provider used to verify a token signature.

    requireUserinfoSignature boolean

    A flag indicating if the user information endpoint of the external OIDC identity provider should be signed and verified.

    revocationEndpoint string

    The revocation endpoint of the external OIDC identity provider.

    scopesSupported string[]

    A list of scopes supported by the external OIDC identity provider.

    tokenEndpoint string

    The token endpoint of the external OIDC identity provider.

    userinfoEndpoint string

    The user information endpoint of the external OIDC identity provider.

Loading...