FacetFlux
imports.smartImports.get
Get a SmartImport by id. By default returns the metadata + field inventory + inferred schema (when present); the raw products list is omitted unless explicitly requested since it can be large. Response: { smartImport: {...}, fieldInventory?, inferredSchema?, rawProductCount, errorMessage? }. Errors: { error: { code: 'not_found', ... } }.
Remote revuo:facetflux
Other tools also called imports.smartImports.get?
See providers with this name
Input Schema
{
"type": "object",
"properties": {
"smartImportId": {
"description": "SmartImport id (Mongo ObjectId).",
"type": "string"
},
"includeFieldInventory": {
"description": "Include the parsed field inventory (default true).",
"type": "boolean",
"default": true
},
"includeInferredSchema": {
"description": "Include the AI-inferred schema (default true). Available when status >= Inferred.",
"type": "boolean",
"default": true
},
"includeRawProducts": {
"description": "Include the raw products list (default false — can be large).",
"type": "boolean",
"default": false
}
},
"required": [
"smartImportId"
]
}