GET api/Tarjeta?fecha={fecha}&detallado={detallado}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| fecha | date |
Required |
|
| detallado | boolean |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of VentasRetorno| Name | Description | Type | Additional information |
|---|---|---|---|
| Credito | decimal number |
None. |
|
| Contado | decimal number |
None. |
|
| Total | decimal number |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"Credito": 1.0,
"Contado": 2.0,
"Total": 3.0
},
{
"Credito": 1.0,
"Contado": 2.0,
"Total": 3.0
}
]
application/xml, text/xml
Sample:
<ArrayOfTarjetaController.VentasRetorno xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SagClubPuntos.Controllers">
<TarjetaController.VentasRetorno>
<Contado>2</Contado>
<Credito>1</Credito>
</TarjetaController.VentasRetorno>
<TarjetaController.VentasRetorno>
<Contado>2</Contado>
<Credito>1</Credito>
</TarjetaController.VentasRetorno>
</ArrayOfTarjetaController.VentasRetorno>