Skip to content

Validate Import

EndpointMethod
/api/admin/settings/data-transfer/imports/{id}/validatePOST

Runs validation over the uploaded file without importing any data. This is the second step of the import lifecycle (after the import is created). The {id} is the import id.

The response carries an is_valid flag and the refreshed import object:

json
{ "is_valid": true, "import": { /* ... */ } }

When is_valid is false, inspect the import's error counts and download the error report to see which rows failed.

Permission: settings.data_transfer.imports.edit.

Released under the MIT License.