Skip to content

Commit fe0e3e2

Browse files
committed
feature(api): added new param sortBy for the get acts/, apify-core: #20997
1 parent e4368e7 commit fe0e3e2

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/apify_client/clients/resource_clients/actor_collection.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ def list(
2626
limit: int | None = None,
2727
offset: int | None = None,
2828
desc: bool | None = None,
29+
sort_by: str | None = None,
2930
) -> ListPage[dict]:
3031
"""List the Actors the user has created or used.
3132
@@ -40,7 +41,7 @@ def list(
4041
Returns:
4142
The list of available Actors matching the specified filters.
4243
"""
43-
return self._list(my=my, limit=limit, offset=offset, desc=desc)
44+
return self._list(my=my, limit=limit, offset=offset, desc=desc, sortBy=sort_by)
4445

4546
def create(
4647
self,

0 commit comments

Comments
 (0)