Infrastructure/Federation & SSO
POSTFederationSince 1.0SynchronousAuth Required
ProbeOIDCProvider
Probe an OIDC provider and return its well-known discovery document metadata.
Execution Availability
Try It Out
Submit a mock request using the current auth context and example-driven inputs.
Request Inputs
Body Fields
issuerStringRequiredIssuer URL of the OIDC provider to probe for discovery metadata.
Example: https://idp.example.com
Responses
Endpoint
POST/api/v1/sso/probe
/api/v1/sso/probe
Request Example
curl -X POST '{host}/api/v1/sso/probe' -H 'Authorization: Bearer {token}' -H 'Content-Type: application/json' -d '{"issuer":"https://idp.example.com"}'
Response Example
200{
"issuer": "https://idp.example.com",
"authorizationEndpoint": "https://idp.example.com/oauth2/authorize",
"tokenEndpoint": "https://idp.example.com/oauth2/token",
"userinfoEndpoint": "https://idp.example.com/oauth2/userinfo",
"endSessionEndpoint": "https://idp.example.com/oauth2/logout",
"jwksUri": "https://idp.example.com/oauth2/jwks",
"scopesSupported": [],
"responseTypesSupported": []
}Change History
This API has no change history records yet.
