PUT api/caja/{id}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id | integer |
Required |
Body Parameters
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. |
Request Formats
application/json, text/json
Sample:
{
"id": 1,
"fecha": "2026-02-23T14:16:23.8673469-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:
<caja xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/sic"> <concepto>sample string 3</concepto> <fecha>2026-02-23T14:16:23.8673469-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>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
None.