The unique identifier for the project. You can find the project ID in the user interface or retrieve it using the list_projects function.
page: integer, default 1
limit: integer, default 10
filters: dict, default {}
By default, all assets will be returned. By including a dict filter here, you may filter the assets you receive.
Here is a list of possible filters you may pass in the filters dict:
{ _id :str,# A specific Asset ID to get. externalId:str,# A specific externalId to get. isPreLabeled:bool, batches: ["<batch_id_1>", "<batch_id_2>"] # When including multiple batches, only the assets belonging to BOTH (all) batches will be returned. This is an "AND" operation.
createdAt: {"gt": "<ISO_TIME_STR>"}, # gt: Greater Than (after), lt: Less Than (before), ISO_TIME_STR example: 2002-12-09T00:00:00.000Z
createdAt:{"lt":"<ISO_TIME_STR>"}}