checkSuppressionWithHttpInfo method
Check suppression status
Check if an email is suppressed.
Note: This method returns the HTTP Response.
Parameters:
- CheckSuppressionRequest checkSuppressionRequest (required):
Implementation
Future<Response> checkSuppressionWithHttpInfo(CheckSuppressionRequest checkSuppressionRequest,) async {
// ignore: prefer_const_declarations
final path = r'/v1/suppression/check';
// ignore: prefer_final_locals
Object? postBody = checkSuppressionRequest;
final queryParams = <QueryParam>[];
final headerParams = <String, String>{};
final formParams = <String, String>{};
const contentTypes = <String>['application/json'];
return apiClient.invokeAPI(
path,
'POST',
queryParams,
postBody,
headerParams,
formParams,
contentTypes.isEmpty ? null : contentTypes.first,
);
}