Infrastructure/Federation & SSO
POSTFederationSince 1.0SynchronousAuth Required
DiscoverIDP
IDP Discovery & Probe Probe a remote endpoint to discover and register an Identity Provider connection.
Execution Availability
Try It Out
Submit a mock request using the current auth context and example-driven inputs.
Request Inputs
Body Fields
endpointStringRequiredEndpoint URL of the Identity Provider to probe for discovery.
Example: https://idp.example.com
usernameStringRequiredUsername credential used to authenticate during IDP discovery.
Example: admin
passwordStringRequiredPassword credential used to authenticate during IDP discovery.
Example: p@ssw0rd
Responses
Endpoint
POST/api/v1/sso/idp/discover
/api/v1/sso/idp/discover
Request Example
curl -X POST '{host}/api/v1/sso/idp/discover' -H 'Authorization: Bearer {token}' -H 'Content-Type: application/json' -d '{"endpoint":"https://idp.example.com","username":"admin","password":"p@ssw0rd"}'
Response Example
200{
"id": "idp-conn-001",
"providerType": "OIDC",
"endpoint": "https://idp.example.com",
"status": "reachable",
"discoveredAt": "example",
"updatedAt": "example"
}Change History
This API has no change history records yet.
