deleteSamlPublicCertificateWithHttpInfo method
Remove public certificate
Delete the current public certificate being used with your SAML configuration. This will also disable encryption for SAML on your system as this certificate is required for that. ##### Permissions Must have sysconsole_write_authentication
permission.
Note: This method returns the HTTP Response
.
Implementation
Future<Response> deleteSamlPublicCertificateWithHttpInfo() async {
// ignore: prefer_const_declarations
final path = r'/saml/certificate/public';
// 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,
);
}