Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/apify_client/clients/resource_clients/key_value_store.py
Original file line number Diff line number Diff line change
Expand Up @@ -294,7 +294,7 @@ def create_keys_public_url(

request_params = self._params(
limit=limit,
exclusive_start_key=exclusive_start_key,
exclusiveStartKey=exclusive_start_key,
collection=collection,
prefix=prefix,
)
Expand Down Expand Up @@ -584,7 +584,7 @@ async def create_keys_public_url(

request_params = self._params(
limit=limit,
exclusive_start_key=exclusive_start_key,
exclusiveStartKey=exclusive_start_key,
collection=collection,
prefix=prefix,
)
Expand Down
4 changes: 2 additions & 2 deletions src/apify_client/clients/resource_clients/request_queue.py
Original file line number Diff line number Diff line change
Expand Up @@ -396,7 +396,7 @@ def list_requests(
limit: How many requests to retrieve.
exclusive_start_id: All requests up to this one (including) are skipped from the result.
"""
request_params = self._params(limit=limit, exclusive_start_id=exclusive_start_id, clientKey=self.client_key)
request_params = self._params(limit=limit, exclusiveStartId=exclusive_start_id, clientKey=self.client_key)

response = self.http_client.call(
url=self._url('requests'),
Expand Down Expand Up @@ -824,7 +824,7 @@ async def list_requests(
limit: How many requests to retrieve.
exclusive_start_id: All requests up to this one (including) are skipped from the result.
"""
request_params = self._params(limit=limit, exclusive_start_id=exclusive_start_id, clientKey=self.client_key)
request_params = self._params(limit=limit, exclusiveStartId=exclusive_start_id, clientKey=self.client_key)

response = await self.http_client.call(
url=self._url('requests'),
Expand Down
Loading