getSamlCertificateStatusWithHttpInfo method

Future<Response> getSamlCertificateStatusWithHttpInfo()

Get certificate status

Get the status of the uploaded certificates and keys in use by your SAML configuration. ##### Permissions Must have sysconsole_write_authentication permission.

Note: This method returns the HTTP Response.

Implementation

Future<Response> getSamlCertificateStatusWithHttpInfo() async {
  // ignore: prefer_const_declarations
  final path = r'/saml/certificate/status';

  // ignore: prefer_final_locals
  Object? postBody;

  final queryParams = <MmQueryParam>[];
  final headerParams = <String, String>{};
  final formParams = <String, String>{};

  const contentTypes = <String>[];

  return apiClient.invokeAPI(
    path,
    'GET',
    queryParams,
    postBody,
    headerParams,
    formParams,
    contentTypes.isEmpty ? null : contentTypes.first,
  );
}