curl -X POST "https://api.zenflow.com.ar/api/v1/orders" \
-H "X-API-Key: zenflow_live_your_key" \
-H "Content-Type: application/json" \
-d '{
"order_tenant_id": "ORD-001",
"assembly_date": "2024-01-15",
"customer_name": "John Doe",
"shipping_address": "123 Main St, City",
"order_detail": [
{
"barcode": "7891234567890",
"quantity": 2,
"price": 29.99
},
{
"barcode": "7891234567891",
"quantity": 1,
"price": 49.99
}
]
}'