From 502512bd665b2559ed9224a85e68fd96c8b8cc27 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jind=C5=99ich=20B=C3=A4r?= Date: Mon, 8 Sep 2025 13:43:09 +0200 Subject: [PATCH 1/2] fix: casing in `exclusiveStartKey` API param --- src/apify_client/clients/resource_clients/key_value_store.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/apify_client/clients/resource_clients/key_value_store.py b/src/apify_client/clients/resource_clients/key_value_store.py index 2447cf87..dcce7349 100644 --- a/src/apify_client/clients/resource_clients/key_value_store.py +++ b/src/apify_client/clients/resource_clients/key_value_store.py @@ -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, ) @@ -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, ) From f147bc53100a4e138b9559483fc9064cc38905c1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jind=C5=99ich=20B=C3=A4r?= Date: Mon, 8 Sep 2025 13:48:35 +0200 Subject: [PATCH 2/2] fix: casing in `RequestQueue`'s `exclusiveStartId` API param --- src/apify_client/clients/resource_clients/request_queue.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/apify_client/clients/resource_clients/request_queue.py b/src/apify_client/clients/resource_clients/request_queue.py index 14e57113..7d1b8974 100644 --- a/src/apify_client/clients/resource_clients/request_queue.py +++ b/src/apify_client/clients/resource_clients/request_queue.py @@ -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'), @@ -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'),