Skip to content

Latest commit

 

History

History
43 lines (29 loc) · 1.08 KB

File metadata and controls

43 lines (29 loc) · 1.08 KB

SAML

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.


getSAMLIDPMetadata

GET /service/saml/idp/metadata

Retrieve SAML IDP metadata

Retrieves metadata for a SAML Identity Provider (IDP).

Example

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());
  }
}

Parameters

Name In Type Required Description
appName query string yes Saml App Name