GET api/Presupuestos?token={token}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| token | string |
Required |
Body Parameters
None.
Response Information
Resource Description
Presupuestos| Name | Description | Type | Additional information |
|---|---|---|---|
| listado_presupuestos | Collection of PresupuestosDiarios |
None. |
|
| titulo_dato | string |
None. |
|
| numero_presupuestos | string |
None. |
|
| importe_total_presupuestos | string |
None. |
|
| objetivoventas | boolean |
None. |
|
| diferenciaobjetivoventas | string |
None. |
|
| imagenpresupuestosmotivacion | string |
None. |
|
| imagenpresupuestosok | string |
None. |
|
| imagenpresupuestosko | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"listado_presupuestos": [
{
"fecha": "2025-12-06T05:07:29.3308684+01:00",
"importe_presupuestos": "sample string 2"
},
{
"fecha": "2025-12-06T05:07:29.3308684+01:00",
"importe_presupuestos": "sample string 2"
}
],
"titulo_dato": "sample string 1",
"numero_presupuestos": "sample string 2",
"importe_total_presupuestos": "sample string 3",
"objetivoventas": true,
"diferenciaobjetivoventas": "sample string 5",
"imagenpresupuestosmotivacion": "sample string 6",
"imagenpresupuestosok": "sample string 7",
"imagenpresupuestosko": "sample string 8"
}
application/xml, text/xml
Sample:
<Presupuestos xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/AppVendedoresREST">
<diferenciaobjetivoventas>sample string 5</diferenciaobjetivoventas>
<imagenpresupuestosko>sample string 8</imagenpresupuestosko>
<imagenpresupuestosmotivacion>sample string 6</imagenpresupuestosmotivacion>
<imagenpresupuestosok>sample string 7</imagenpresupuestosok>
<importe_total_presupuestos>sample string 3</importe_total_presupuestos>
<listado_presupuestos>
<PresupuestosDiarios>
<fecha>2025-12-06T05:07:29.3308684+01:00</fecha>
<importe_presupuestos>sample string 2</importe_presupuestos>
</PresupuestosDiarios>
<PresupuestosDiarios>
<fecha>2025-12-06T05:07:29.3308684+01:00</fecha>
<importe_presupuestos>sample string 2</importe_presupuestos>
</PresupuestosDiarios>
</listado_presupuestos>
<numero_presupuestos>sample string 2</numero_presupuestos>
<objetivoventas>true</objetivoventas>
<titulo_dato>sample string 1</titulo_dato>
</Presupuestos>