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