PUT api/imputacion/{id}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id | integer |
Required |
Body Parameters
imputacion| Name | Description | Type | Additional information |
|---|---|---|---|
| id | integer |
None. |
|
| idCaja | integer |
None. |
|
| numero | integer |
None. |
|
| importe | decimal number |
None. |
|
| idBarril | integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"id": 1,
"idCaja": 2,
"numero": 3,
"importe": 4.1,
"idBarril": 5
}
application/xml, text/xml
Sample:
<imputacion xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/sic"> <id>1</id> <idBarril>5</idBarril> <idCaja>2</idCaja> <importe>4.1</importe> <numero>3</numero> </imputacion>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
None.