Query Vision Events
Single Page Query
import roboflow
roboflow.login()
rf = roboflow.Roboflow()
ws = rf.workspace()
page = ws.query_vision_events(
"a1b3c8e1", # use case ID (required)
event_type="quality_check", # filter by single event type
start_time="2024-01-14T00:00:00Z", # ISO 8601 start time
end_time="2024-01-15T23:59:59Z", # ISO 8601 end time
limit=50, # max events per page
)
for evt in page["events"]:
print(evt["eventId"], evt["eventData"])Paginate Through All Results
Last updated
Was this helpful?