PUT api/Impuestos
Request Information
URI Parameters
None.
Body Parameters
Impuestos| Name | Description | Type | Additional information |
|---|---|---|---|
| Cod | integer |
None. |
|
| Nombre | string |
String length: inclusive between 0 and 200 |
|
| Porcentaje | decimal number |
None. |
|
| Estado | boolean |
None. |
|
| IvaAplicado | boolean |
None. |
|
| Empresa | integer |
None. |
|
| ConexionBd | Conexion |
None. |
Request Formats
application/json, text/json
Sample:
{
"ConexionBd": {
"BdPrincipal": "sample string 1",
"BdCliente": "sample string 2"
},
"Cod": 1,
"Nombre": "sample string 2",
"Porcentaje": 1.0,
"Estado": true,
"IvaAplicado": true,
"Empresa": 3
}
application/xml, text/xml
Sample:
<Impuestos xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ComandasApi.Models">
<Cod>1</Cod>
<ConexionBd>
<BdCliente>sample string 2</BdCliente>
<BdPrincipal>sample string 1</BdPrincipal>
</ConexionBd>
<Empresa>3</Empresa>
<Estado>true</Estado>
<IvaAplicado>true</IvaAplicado>
<Nombre>sample string 2</Nombre>
<Porcentaje>1</Porcentaje>
</Impuestos>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
IHttpActionResultNone.
Response Formats
application/json, text/json, application/xml, text/xml
Sample:
Sample not available.