curl --location --request POST 'https://shopify-mistica.onrender.com/fastplus/orders' \
--header 'Content-Type: application/json' \
--data-raw '{
"Fecha": "2025-06-05",
"CedCliente": "123456789",
"Estado": "Pendiente",
"NumPedido": "101",
"Detalles": [
{
"NumPedido": 101,
"IdProducto": 3000,
"Cantidad": 2,
"Valor": 15000.5
},
{
"NumPedido": 101,
"IdProducto": 3001,
"Cantidad": 1,
"Valor": 20000.75
}
]
}'{}