Import Stats
| Endpoint | Method |
|---|---|
/api/admin/settings/data-transfer/imports/{id}/stats | GET |
Returns the current progress of an import without advancing it. Use the optional state query parameter (e.g. processed) to scope the counts to a particular processing state. The {id} is the import id.
json
{ "stats": { "processed": 12, "total": 12, "invalid": 0 }, "import": { /* ... */ } }The stats values above are illustrative.
Permission: settings.data_transfer.imports.view.

