Skip to main content
List your company’s data imports, most recent first. An import is one run of Qobra pulling data in — a CRM/integration refresh, a CSV upload or an API push — into a data table, a quota or the user directory. Each row summarizes one run: its status, what triggered it, which resource types it touched, an overall progress and an error flag. Combine the filters (AND) to zoom in, e.g. resource_type=‘quota’ + status=‘finished’, or error=True to triage failed runs. Fetch get_import for the per-batch breakdown (record counters, error detail) of a single run. Only the last 12 months are queryable — older imports are stale and not returned.

Parameters

Body

resource_type
string
Keep only imports that touched this resource type: ‘data_table’, ‘quota’ or ‘user’. Omit for every type.
status
string
Keep only imports in this state: ‘scheduled’, ‘started’ or ‘finished’. Omit for every state.
created_after
string
Keep only imports created at or after this instant. Accepts an absolute ISO-8601 date/time (‘2026-07-01’) or a duration relative to now (‘-P7D’ for the last 7 days). Omit for no lower bound.
created_before
string
Keep only imports created at or before this instant. Same accepted forms as created_after. Omit for no upper bound.
error
boolean
True keeps only imports with at least one failed batch; False keeps only imports where every batch succeeded. Omit for both.
limit
integer
Page size, between 1 and 250. Defaults to 50.
offset
integer
Row offset into the result set — the number of rows to skip before this page. Pass the next_offset returned by the previous call, or None for the first page.

Response

Body

imports
object[]
next_offset
integer