DocsAPI ReferenceImport/bff/import/list
getImportAdmin BFF

/bff/import/list

Returns 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.

ImportgetBffImportList

Parameters

3 query

3 total
Query · 3
pagestring

Page number (1-based) for pagination.

limitstring

Maximum items per page (1-500, default 50).

filterFulltextQuerystring

Full-text search on source name.

Request

GET /bff/import/list

get
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"

Response

Paginated list of import jobs.

{
  "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
}

All response codes

1 status code documented

Need an API key?

All BizKitHub API endpoints require authentication via API key.

Get API Key