I’m exporting my projects data and only want to export data that is ready for review, this is what the code looks like
export_params = {
"metadata_fields": True,
"project_details": True,
"label_details": True,
"performance_details": True,
"data_row_details": False,
"media_attributes": False,
"metadata_fields": False,
}
# ToLabel, InReview, InRework, Done
filters = {
"workflow_status": "InReview",
}
export_task = project.export_v2(params=export_params, filters=filters)
export_task.wait_till_done()
But when I look at the data I only see TO_LABEL
data - even though my webUI shows many items (118) that are In Review. Any idea why this might be happening?