cURL
curl --request GET \ --url https://api.example.com/api/cotizaciones \ --header 'Authorization: <authorization>'
{ "500": {}, "success": true, "data": [ { "id": 123, "numero": 123, "fecha": "<string>", "cliente_nombre": "<string>", "total": 123, "moneda": "<string>", "estado": "<string>", "aplicar_igv": true } ] }
cotizaciones.view
view_cotizaciones
Show Estructura de cotización
PEN
USD
pendiente
aprobada
rechazada
vencida
{ "success": true, "data": [ { "id": 15, "numero": 15, "fecha": "2026-03-06", "cliente_nombre": "Distribuidora ABC S.A.C.", "total": 1180.00, "moneda": "PEN", "estado": "pendiente", "aplicar_igv": true, "subtotal": 1000.00, "igv": 180.00, "descuento": 0.00 } ] }
id_empresa
/api/cotizaciones/{id}