get_assets
get_assets(project_id, page, limit, filters)
Parameters
{
"_id": ["asset_id_1", "asset_id_2"], # Asset ID filter
"externalId": ["external_id_1", "external_id_2"], # External ID filter
"isPreLabeled": bool, # Prelabel filter
"batches": ["batch_id_1", "batch_id_2"], # Batch filter (only the assets belonging to all batches will be returned) This is an "AND" operation.
"createdAt": {"gt": "ISO_TIME_STR"}, # gt: Greater Than (after), ISO_TIME_STR example: "2002-12-09T00:00:00.000Z"
"createdAt": {"lt": "ISO_TIME_STR"} # lt: Less Than (before), ISO_TIME_STR example: "2002-12-09T00:00:00.000Z"
}Example
Last updated