# P41 - Import products to the operator information system

Description

Returns the import identifier to track the status of the import


Call Frequency

Recommended usage: Every hour, for each seller
Maximum usage: Every 15 minutes, for each seller
Read More

More context

Endpoint: POST /api/products/imports

## Request fields (multipart/form-data):

  - `conversion_options` (object)
    Options used for product file conversion when conversion_type is AI_CONVERTER

  - `conversion_options.ai_enrichment` (object)
    Enable AI enrichment. Default to DISABLED

  - `conversion_options.ai_enrichment.status` (string)
    Enum: "ENABLED", "DISABLED"

  - `conversion_options.ai_rewrite` (object)
    Enable AI rewrite. Default to ENABLED

  - `conversion_options.ai_rewrite.status` (string)
    Enum: "ENABLED", "DISABLED"

  - `conversion_type` (string)
    Product file conversion type. If Catalog Transformer is enabled but the conversionType is not specified, then the default configuration from the shop settings will be used

Enum: "AI_CONVERTER", "STANDARD"

  - `file` (string, required)
    Import file (CSV or XML or XLSX) to upload. Use multipart/form-data with name file

  - `operator_format` (boolean)
    Force the use of the operator product format

  - `shop` (integer, required)
    Shop identifier

## Response 201 fields (application/json):

  - `import_id` (integer, required)
    Import identifier


