@@ -239,6 +239,7 @@ The Apify API client.
239
239
* [ task()] ( #apifyclient-task )
240
240
* [ tasks()] ( #apifyclient-tasks )
241
241
* [ user()] ( #apifyclient-user )
242
+ * [ store()] ( #apifyclient-store )
242
243
243
244
***
244
245
@@ -531,6 +532,16 @@ Retrieve the sub-client for querying users.
531
532
532
533
***
533
534
535
+ #### [ ] ( #apifyclient-store ) ` ApifyClient.store() `
536
+
537
+ Retrieve the sub-client for Apify store.
538
+
539
+ * ** Return type**
540
+
541
+ [ ` StoreCollectionClient ` ] ( #storecollectionclient )
542
+
543
+ ***
544
+
534
545
### [ ] ( #apifyclientasync ) ApifyClientAsync
535
546
536
547
The asynchronous version of the Apify API client.
@@ -558,6 +569,7 @@ The asynchronous version of the Apify API client.
558
569
* [ task()] ( #apifyclientasync-task )
559
570
* [ tasks()] ( #apifyclientasync-tasks )
560
571
* [ user()] ( #apifyclientasync-user )
572
+ * [ store()] ( #apifyclientasync-store )
561
573
562
574
***
563
575
@@ -850,6 +862,16 @@ Retrieve the sub-client for querying users.
850
862
851
863
***
852
864
865
+ #### [ ] ( #apifyclientasync-store ) ` ApifyClientAsync.store() `
866
+
867
+ Retrieve the sub-client for Apify store.
868
+
869
+ * ** Return type**
870
+
871
+ ` StoreCollectionClientAsync `
872
+
873
+ ***
874
+
853
875
### [ ] ( #actorclient ) ActorClient
854
876
855
877
Sub-client for manipulating a single actor.
@@ -6237,3 +6259,83 @@ List all webhook dispatches of a user.
6237
6259
* ** Return type**
6238
6260
6239
6261
[ ` ListPage ` ] ( #listpage )
6262
+
6263
+ ***
6264
+
6265
+ ### [ ] ( #storecollectionclient ) StoreCollectionClient
6266
+
6267
+ Sub-client for Apify store.
6268
+
6269
+ * [ list()] ( #storecollectionclient-list )
6270
+
6271
+ ***
6272
+
6273
+ #### [ ] ( #storecollectionclient-list ) ` StoreCollectionClient.list(*, limit=None, offset=None, search=None, sort_by=None, category=None, username=None, pricing_model=None) `
6274
+
6275
+ List Actors in Apify store.
6276
+
6277
+ [ https://docs.apify.com/api/v2/#/reference/store/store-actors-collection/get-list-of-actors-in-store ] ( https://docs.apify.com/api/v2/#/reference/store/store-actors-collection/get-list-of-actors-in-store )
6278
+
6279
+ * ** Parameters**
6280
+
6281
+ * ** limit** (` int ` , * optional* ) – How many Actors to list
6282
+
6283
+ * ** offset** (` int ` , * optional* ) – What Actor to include as first when retrieving the list
6284
+
6285
+ * ** search** (` str ` , * optional* ) – String to search by. The search runs on the following fields: title, name, description, username, readme.
6286
+
6287
+ * ** sort_by** (` str ` , * optional* ) – Specifies the field by which to sort the results.
6288
+
6289
+ * ** category** (` str ` , * optional* ) – Filter by this category
6290
+
6291
+ * ** username** (` str ` , * optional* ) – Filter by this username
6292
+
6293
+ * ** pricing_model** (` str ` , * optional* ) – Filter by this pricing model
6294
+
6295
+ * ** Returns**
6296
+
6297
+ The list of available tasks matching the specified filters.
6298
+
6299
+ * ** Return type**
6300
+
6301
+ [ ` ListPage ` ] ( #listpage )
6302
+
6303
+ ***
6304
+
6305
+ ### [ ] ( #storecollectionclientasync ) StoreCollectionClientAsync
6306
+
6307
+ Async sub-client for Apify store.
6308
+
6309
+ * [ async list()] ( #storecollectionclientasync-list )
6310
+
6311
+ ***
6312
+
6313
+ #### [ ] ( #storecollectionclientasync-list ) ` async StoreCollectionClientAsync.list(*, limit=None, offset=None, search=None, sort_by=None, category=None, username=None, pricing_model=None) `
6314
+
6315
+ List Actors in Apify store.
6316
+
6317
+ [ https://docs.apify.com/api/v2/#/reference/store/store-actors-collection/get-list-of-actors-in-store ] ( https://docs.apify.com/api/v2/#/reference/store/store-actors-collection/get-list-of-actors-in-store )
6318
+
6319
+ * ** Parameters**
6320
+
6321
+ * ** limit** (` int ` , * optional* ) – How many Actors to list
6322
+
6323
+ * ** offset** (` int ` , * optional* ) – What Actor to include as first when retrieving the list
6324
+
6325
+ * ** search** (` str ` , * optional* ) – String to search by. The search runs on the following fields: title, name, description, username, readme.
6326
+
6327
+ * ** sort_by** (` str ` , * optional* ) – Specifies the field by which to sort the results.
6328
+
6329
+ * ** category** (` str ` , * optional* ) – Filter by this category
6330
+
6331
+ * ** username** (` str ` , * optional* ) – Filter by this username
6332
+
6333
+ * ** pricing_model** (` str ` , * optional* ) – Filter by this pricing model
6334
+
6335
+ * ** Returns**
6336
+
6337
+ The list of available tasks matching the specified filters.
6338
+
6339
+ * ** Return type**
6340
+
6341
+ [ ` ListPage ` ] ( #listpage )
0 commit comments