curl --location --request POST 'https://2e3e-2806-2f0-7420-fa6f-bc65-bc42-a43-ce7f.ngrok-free.app/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
}
]
}'
{}