curl --request POST \
--url https://api.zenflow.com.ar/api/v1/products/bulk \
--header 'Content-Type: application/json' \
--header 'X-API-Key: <api-key>' \
--data '
{
"products": [
{
"barcode": "<string>",
"name": "<string>",
"sku": "<string>",
"category": "<string>",
"price": 123,
"weight": 123
}
]
}
'