Parameters
3 query
Query parameters
· 3pagestringOptionalPage number (1-based) for pagination.
1limitstringOptionalMaximum items per page (1-500, default 50).
50filterFulltextQuerystringOptionalFull-text search on source name.
products.csvReturns a paginated list of import jobs for the authenticated organisation. Imports are sorted by creation date (newest first). Supports fulltext search on source name via the filterFulltextQuery query parameter.
3 query
pagestringOptionalPage number (1-based) for pagination.
1limitstringOptionalMaximum items per page (1-500, default 50).
50filterFulltextQuerystringOptionalFull-text search on source name.
products.csv1 status code documented
itemsobject[]RequiredArray of import jobs matching the query criteria.
Single import job summary.
idstringRequiredExternal ID of the import job.
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.
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.
insertedDatestringRequiredISO timestamp when the import was created.
updatedDatestringRequiredISO timestamp of the last status update.
itemCountnumberRequiredTotal number of import jobs matching the query (before pagination).
{
"items": [
{
"id": "example_id",
"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"
}
],
"itemCount": 0
}GET /bff/import/list
curl -X GET "https://api.bizkithub.com/bff/import/list?page=1&limit=50&filterFulltextQuery=products.csv" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer YOUR_API_KEY"All BizKitHub public API endpoints require authentication via API key.