getListUnsubscribeRecipientsWithHttpInfo method
Get paginated list of unsubscribed recipients.
Unsubscribed recipient have unsubscribed from a mailing list for a user or domain and cannot be contacted again.
Note: This method returns the HTTP Response
.
Parameters:
Implementation
Future<Response> getListUnsubscribeRecipientsWithHttpInfo({ int? page, int? size, String? sort, String? domainId, }) async {
// ignore: prefer_const_declarations
final path = r'/bounce/list-unsubscribe-recipients';
// ignore: prefer_final_locals
Object? postBody;
final queryParams = <QueryParam>[];
final headerParams = <String, String>{};
final formParams = <String, String>{};
if (page != null) {
queryParams.addAll(_queryParams('', 'page', page));
}
if (size != null) {
queryParams.addAll(_queryParams('', 'size', size));
}
if (sort != null) {
queryParams.addAll(_queryParams('', 'sort', sort));
}
if (domainId != null) {
queryParams.addAll(_queryParams('', 'domainId', domainId));
}
const contentTypes = <String>[];
return apiClient.invokeAPI(
path,
'GET',
queryParams,
postBody,
headerParams,
formParams,
contentTypes.isEmpty ? null : contentTypes.first,
);
}