getSentDeliveryStatusesBySentIdWithHttpInfo method

Future<Response> getSentDeliveryStatusesBySentIdWithHttpInfo(
  1. String sentId, {
  2. int? page,
  3. int? size,
  4. String? sort,
  5. DateTime? since,
  6. DateTime? before,
})

Get all sent email delivery statuses

Note: This method returns the HTTP Response.

Parameters:

  • String sentId (required): ID of the sent email that you want to get the delivery status of. Sent email object is returned when sending an email

  • int page: Optional page index in delivery status list pagination

  • int size: Optional page size in delivery status list pagination

  • String sort: Optional createdAt sort direction ASC or DESC

  • DateTime since: Filter by created at after the given timestamp

  • DateTime before: Filter by created at before the given timestamp

Implementation

Future<Response> getSentDeliveryStatusesBySentIdWithHttpInfo(String sentId, { int? page, int? size, String? sort, DateTime? since, DateTime? before, }) async {
  // ignore: prefer_const_declarations
  final path = r'/sent/{sentId}/delivery-status'
    .replaceAll('{sentId}', sentId);

  // 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 (since != null) {
    queryParams.addAll(_queryParams('', 'since', since));
  }
  if (before != null) {
    queryParams.addAll(_queryParams('', 'before', before));
  }

  const contentTypes = <String>[];


  return apiClient.invokeAPI(
    path,
    'GET',
    queryParams,
    postBody,
    headerParams,
    formParams,
    contentTypes.isEmpty ? null : contentTypes.first,
  );
}