FacetFlux

imports.smartImports.list

List SmartImports for the current tenant, newest first. Excludes the heavy `rawProducts` list from each entry — call imports.smartImports.get to fetch one in full. Optional `status` filter narrows by lifecycle state. Response: { smartImports: [{ id, status, mode, originalFileName, productCount, variantCount, createdAt, updatedAt }] }. Errors: { error: { code: 'bad_input', ... } }.

Remote revuo:facetflux

Other tools also called imports.smartImports.list? See providers with this name

Input Schema


            {
  "type": "object",
  "properties": {
    "status": {
      "description": "Optional status filter: uploaded, analyzed, inferring, inferred, reviewed, importing, complete, failed.",
      "type": [
        "string",
        "null"
      ],
      "enum": [
        "Uploaded",
        "Analyzed",
        "Inferring",
        "Inferred",
        "Reviewed",
        "Importing",
        "Complete",
        "Failed",
        null
      ],
      "default": null
    }
  }
}