1 operation(s). Part of the API index.
Call these as client.<service>.<method>(...). <service> is the client field for this
group — the README lists the field name for every service.
These pages group operations the way the OpenAPI specification tags them, which
is not always one field per page.
GET /service/saml/idp/metadata
Retrieve SAML IDP metadata
Retrieves metadata for a SAML Identity Provider (IDP).
public static void callGetSAMLIDPMetadata(LoginRadiusClient client) {
String appName = "<appName>"; //Required
try {
var response = client.saml.getSAMLIDPMetadata(appName);
System.out.println(response);
} catch (ApiException e) {
LoginRadiusException lr = LoginRadiusClient.toLoginRadiusException(e);
System.err.println(lr.description());
}
}| Name | In | Type | Required | Description |
|---|---|---|---|---|
appName |
query | string | yes | Saml App Name |