Update Product Import
PUT /v1/product/import
Updates existing product import details. This endpoint processes imported product data, synchronizes it with existing records, and returns a summary including successfully updated items, skipped entries, and any encountered errors.
Request Body
[
{
"name": "Example Product",
"sku": "example-sku",
"products": [
{
"price": 100
}
],
"resell": false,
"subscription": true,
"properties": {
"length": "1m"
},
"categories": [
"Example Category"
],
"image": "https://example.com/product-image.png"
}
]
Response Example
{
"status": true,
"message": "Successfully imported 1 product(s)",
"products": [
{
"id": "example-product-id",
"sku": "example-sku",
"op": "insertOne"
}
],
"errors": [],
"skipped": []
}