GET api/caja
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
Collection of caja| Name | Description | Type | Additional information |
|---|---|---|---|
| id | integer |
None. |
|
| fecha | date |
None. |
|
| concepto | string |
None. |
|
| tipo | string |
None. |
|
| importe | decimal number |
None. |
|
| importeUSS | decimal number |
None. |
|
| idCuenta | integer |
None. |
|
| idCliente | integer |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"id": 1,
"fecha": "2026-02-23T14:16:03.7577043-06:00",
"concepto": "sample string 3",
"tipo": "sample string 4",
"importe": 1.1,
"importeUSS": 1.1,
"idCuenta": 5,
"idCliente": 1
},
{
"id": 1,
"fecha": "2026-02-23T14:16:03.7577043-06:00",
"concepto": "sample string 3",
"tipo": "sample string 4",
"importe": 1.1,
"importeUSS": 1.1,
"idCuenta": 5,
"idCliente": 1
}
]
application/xml, text/xml
Sample:
<ArrayOfcaja xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/sic">
<caja>
<concepto>sample string 3</concepto>
<fecha>2026-02-23T14:16:03.7577043-06:00</fecha>
<id>1</id>
<idCliente>1</idCliente>
<idCuenta>5</idCuenta>
<importe>1.1</importe>
<importeUSS>1.1</importeUSS>
<tipo>sample string 4</tipo>
</caja>
<caja>
<concepto>sample string 3</concepto>
<fecha>2026-02-23T14:16:03.7577043-06:00</fecha>
<id>1</id>
<idCliente>1</idCliente>
<idCuenta>5</idCuenta>
<importe>1.1</importe>
<importeUSS>1.1</importeUSS>
<tipo>sample string 4</tipo>
</caja>
</ArrayOfcaja>