getOrganizationInboxes method

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

List Organization Inboxes Paginated

List organization inboxes in paginated form. These are inboxes created with allowTeamAccess flag enabled. Organization inboxes are readOnly for non-admin users. The results are available on the content property of the returned object. This method allows for page index (zero based), page size (how many results to return), and a sort direction (based on createdAt time).

Parameters:

  • int page: Optional page index in list pagination

  • int size: Optional page size in list pagination

  • String sort: Optional createdAt sort direction ASC or DESC

  • String searchFilter: Optional search filter

  • DateTime since: Optional filter by created after given date time

  • DateTime before: Optional filter by created before given date time

Implementation

Future<PageOrganizationInboxProjection?> getOrganizationInboxes({ int? page, int? size, String? sort, String? searchFilter, DateTime? since, DateTime? before, }) async {
  final response = await getOrganizationInboxesWithHttpInfo( page: page, size: size, sort: sort, searchFilter: searchFilter, since: since, before: before, );
  if (response.statusCode >= HttpStatus.badRequest) {
    throw ApiException(response.statusCode, await _decodeBodyBytes(response));
  }
  // When a remote server returns no body with a status of 204, we shall not decode it.
  // At the time of writing this, `dart:convert` will throw an "Unexpected end of input"
  // FormatException when trying to decode an empty string.
  if (response.body.isNotEmpty && response.statusCode != HttpStatus.noContent) {
    return await apiClient.deserializeAsync(await _decodeBodyBytes(response), 'PageOrganizationInboxProjection',) as PageOrganizationInboxProjection;

  }
  return null;
}