I want to import many products in bulk. How do I do it?
Hi Angelika,
You can use the product import endpoint and send a request with a JSON file containing product details data.
See the request example - the body of the request should contain the product data.
curl -i -X POST \
'https://api.emporix.io/product/saasdev2/products/bulk?skipVariantGeneration=false&doIndex=true' \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>' \
-H 'Content-Language: de' \
-H 'Content-Type: application/json' \
-d '{}'
You can also check the endpoint’s documentation - Creating multiple products.