Parameters
1 query
Query parameters
· 1importIdstringRequiredExternal ID of the import job.
aB3xKm9pQ2wLn4YzReturns full details of a single import job including progress counters, detected columns, and any error messages. Use this endpoint to poll import progress (recommended interval: 10 seconds).
1 query
importIdstringRequiredExternal ID of the import job.
aB3xKm9pQ2wLn4Yz1 status code documented
idnumberRequiredInternal database ID.
organisationIdnumberRequiredOrganisation that owns this import.
externalIdstringRequiredUnique external identifier of the import job.
providerstringRequiredImport provider ("shoptet" or "manual").
dataTypestringRequiredType of entity being imported.
sourceTypestringRequiredSource type ("file" or "url").
sourceNamestringRequiredOriginal filename or URL used as the import source.
sourceUrlstring | nullRequiredRemote feed URL (only for URL source type).
blobIdnumber | nullRequiredInternal blob ID of the uploaded file.
statusstringRequiredCurrent status of the import job.
totalRowsnumberRequiredTotal number of rows in the source file.
importedRowsnumberRequiredNumber of rows successfully imported so far.
failedRowsnumberRequiredNumber of rows that failed to import.
columnsanyRequiredArray of detected column names.
errorsanyRequiredArray of error messages if the import failed.
insertedDatestringRequiredISO timestamp when the import was created.
updatedDatestringRequiredISO timestamp of the last status update.
{
"id": 0,
"organisationId": 0,
"externalId": "example_externalId",
"provider": "example_provider",
"dataType": "example_dataType",
"sourceType": "example_sourceType",
"sourceName": "example_sourceName",
"status": "example_status",
"totalRows": 0,
"importedRows": 0,
"failedRows": 0,
"insertedDate": "example_insertedDate",
"updatedDate": "example_updatedDate"
}GET /bff/import/detail
curl -X GET "https://api.bizkithub.com/bff/import/detail?importId=aB3xKm9pQ2wLn4Yz" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer YOUR_API_KEY"All BizKitHub public API endpoints require authentication via API key.