curl --location --request POST 'https://dev-api.inwantaiwan.com/api/cms/v1/product/bulk-create/check' \
--header 'Content-Type: application/json' \
--data-raw '[
{
"row": 1,
"sku": 4572345716,
"name": "first item",
"description": "description",
"price": 20,
"distributor_price": 15,
"stock": 100,
"is_frozen_product": false
},
{
"row": 2,
"sku": 32345,
"name": "second item",
"description": "description",
"price": 20,
"distributor_price": 10,
"stock": 100,
"is_frozen_product": false
}
]'
{
"data": {
"errors": [
"Row 1 - Column SKU 4572345716 already exists"
],
"success_data": [
{
"sku": 32345,
"name": "second item",
"description": "description",
"price": 20,
"stock": 100,
"is_frozen_product": false
}
]
}
}