GET api/imputacion/{id}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
imputacionExt| Name | Description | Type | Additional information |
|---|---|---|---|
| id | integer |
None. |
|
| idCaja | integer |
None. |
|
| numero | integer |
None. |
|
| importe | decimal number |
None. |
|
| idBarril | integer |
None. |
|
| fecha | date |
None. |
|
| saldo | decimal number |
None. |
Response Formats
application/json, text/json
Sample:
{
"id": 1,
"idCaja": 2,
"numero": 3,
"importe": 4.1,
"idBarril": 5,
"fecha": "2026-02-23T14:17:52.9326849-06:00",
"saldo": 7.1
}
application/xml, text/xml
Sample:
<imputacionExt xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/sic"> <fecha>2026-02-23T14:17:52.9326849-06:00</fecha> <id>1</id> <idBarril>5</idBarril> <idCaja>2</idCaja> <importe>4.1</importe> <numero>3</numero> <saldo>7.1</saldo> </imputacionExt>