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