getAllWebhooksWithHttpInfo method

Future<Response> getAllWebhooksWithHttpInfo({
  1. int? page,
  2. int? size,
  3. String? sort,
  4. String? searchFilter,
  5. DateTime? since,
  6. String? inboxId,
  7. String? phoneId,
  8. DateTime? before,
})

List Webhooks Paginated

List webhooks in paginated form. Allows for page index, page size, and sort direction.

Note: This method returns the HTTP Response.

Parameters:

  • int page: Optional page index in list pagination

  • int size: Optional page size for paginated result list.

  • String sort: Optional createdAt sort direction ASC or DESC

  • String searchFilter: Optional search filter

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

  • String inboxId: Filter by inboxId

  • String phoneId: Filter by phoneId

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

Implementation

Future<Response> getAllWebhooksWithHttpInfo({ int? page, int? size, String? sort, String? searchFilter, DateTime? since, String? inboxId, String? phoneId, DateTime? before, }) async {
  // ignore: prefer_const_declarations
  final path = r'/webhooks/paginated';

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