invalidateEmailInvitesWithHttpInfo method
Invalidate active email invitations
Invalidate active email invitations that have not been accepted by the user. ##### Permissions Must have sysconsole_write_authentication
permission.
Note: This method returns the HTTP Response
.
Implementation
Future<Response> invalidateEmailInvitesWithHttpInfo() async {
// ignore: prefer_const_declarations
final path = r'/teams/invites/email';
// 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,
);
}