getOrganizationInboxesWithHttpInfo method
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).
Note: This method returns the HTTP Response
.
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<Response> getOrganizationInboxesWithHttpInfo({ int? page, int? size, String? sort, String? searchFilter, DateTime? since, DateTime? before, }) async {
// ignore: prefer_const_declarations
final path = r'/inboxes/organization';
// 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 (searchFilter != null) {
queryParams.addAll(_queryParams('', 'searchFilter', searchFilter));
}
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,
);
}