deleteSamlIdpCertificateWithHttpInfo method
Remove IDP certificate
Delete the current IDP certificate being used with your SAML configuration. This will also disable SAML on your system as this certificate is required for SAML. ##### Permissions Must have sysconsole_write_authentication
permission.
Note: This method returns the HTTP Response
.
Implementation
Future<Response> deleteSamlIdpCertificateWithHttpInfo() async {
// ignore: prefer_const_declarations
final path = r'/saml/certificate/idp';
// ignore: prefer_final_locals
Object? postBody;
final queryParams = <MmQueryParam>[];
final headerParams = <String, String>{};
final formParams = <String, String>{};
const contentTypes = <String>[];
return apiClient.invokeAPI(
path,
'DELETE',
queryParams,
postBody,
headerParams,
formParams,
contentTypes.isEmpty ? null : contentTypes.first,
);
}