POST api/ventas/vendedor
Request Information
URI Parameters
None.
Body Parameters
VentasVendedorRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| FechaInicial | string |
None. |
|
| FechaFinal | string |
None. |
|
| VendedorId | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"FechaInicial": "sample string 1",
"FechaFinal": "sample string 2",
"VendedorId": "sample string 3"
}
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
VentasVendedorResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| FechaInicial | string |
None. |
|
| FechaFinal | string |
None. |
|
| VentaBruta | decimal number |
None. |
|
| VentaNeta | decimal number |
None. |
|
| Ganancia | decimal number |
None. |
|
| detalle | Collection of DetalleVentaResponse |
None. |
Response Formats
application/json, text/json
Sample:
{
"FechaInicial": "sample string 1",
"FechaFinal": "sample string 2",
"VentaBruta": 3.1,
"VentaNeta": 4.1,
"Ganancia": 5.1,
"detalle": [
{
"$id": "2",
"FechaVEnta": "sample string 1",
"Tiqueta": "sample string 2",
"ValorApuesta": 3.1,
"Cliente": "sample string 4",
"Detalle": "sample string 5"
},
{
"$ref": "2"
}
]
}