getAttachmentsWithHttpInfo method

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

Get email attachments

Get all attachments in paginated response. Each entity contains meta data for the attachment such as name and content-type. Use the attachmentId and the download endpoints to get the file contents.

Note: This method returns the HTTP Response.

Parameters:

  • int page: Optional page index for list pagination

  • int size: Optional page size for list pagination

  • String sort: Optional createdAt sort direction ASC or DESC

  • String fileNameFilter: Optional file name and content type search filter

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

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

Implementation

Future<Response> getAttachmentsWithHttpInfo({ int? page, int? size, String? sort, String? fileNameFilter, DateTime? since, DateTime? before, }) async {
  // ignore: prefer_const_declarations
  final path = r'/attachments';

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