For a couple of days now, I have been trying to utilize the Labelbox API to retrieve reviewer data. Specifically, I need to view the number of images that were reviewed in a certain time frame. It would also be useful to retrieve the project ids and the reviewer’s ids associated with those reviews.
Here is what I am working with so far, when I use these filters, I don’t get the correct data returned at all.
project = some arbitrary project
start = arbitrary start date
end = arbitrary end date
export_params = {
“data_row_details”: True,
“project_details”: True,
“label_details”: True
}
filters = {
“reviewed_at”: [start, end]
}
export_task = project.export_v2(params=export_params, filters=filters)
Thank you in advance for the help