Skip to content

Commit

Permalink
fix: Correct query parameter and increase value for page size (#83)
Browse files Browse the repository at this point in the history
* Correct page size query parameter

* Increase page size to 1000
  • Loading branch information
ReubenFrankel authored Nov 27, 2024
1 parent 55b30db commit 556978d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tap_veeqo/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ class VeeqoStream(RESTStream):

url_base = "https://api.veeqo.com"
primary_keys = ("id",)
page_size = 100
page_size = 1000

@property
@override
Expand All @@ -33,7 +33,7 @@ def get_new_paginator(self):
@override
def get_url_params(self, context, next_page_token):
params = {
"page_size": self.page_size,
"per_page": self.page_size,
"page": next_page_token,
}

Expand Down

0 comments on commit 556978d

Please sign in to comment.