POST api/IntegracionFinanciero/ActualizarDetallePrePago
Request Information
URI Parameters
None.
Body Parameters
PrePagoDetalleApiModel| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | integer |
None. |
|
| Precio | decimal number |
None. |
|
| Cantidad | integer |
None. |
|
| Subtotal | decimal number |
None. |
|
| PorcRetraccion | decimal number |
None. |
|
| Total | decimal number |
None. |
|
| TarifaEspecial | boolean |
None. |
|
| ServicioFacturarId | integer |
None. |
|
| LineaId | integer |
None. |
|
| ServicioNombre | string |
None. |
|
| ServicioRegular | boolean |
None. |
Request Formats
application/json, text/json
Sample:
{
"Id": 1,
"Precio": 2.0,
"Cantidad": 3,
"Subtotal": 4.0,
"PorcRetraccion": 5.0,
"Total": 6.0,
"TarifaEspecial": true,
"ServicioFacturarId": 8,
"LineaId": 9,
"ServicioNombre": "sample string 10",
"ServicioRegular": true
}
application/xml, text/xml
Sample:
<PrePagoDetalleApiModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Citikold.RFS.ApiServices.Models"> <Cantidad>3</Cantidad> <Id>1</Id> <LineaId>9</LineaId> <PorcRetraccion>5</PorcRetraccion> <Precio>2</Precio> <ServicioFacturarId>8</ServicioFacturarId> <ServicioNombre>sample string 10</ServicioNombre> <ServicioRegular>true</ServicioRegular> <Subtotal>4</Subtotal> <TarifaEspecial>true</TarifaEspecial> <Total>6</Total> </PrePagoDetalleApiModel>
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
IHttpActionResultNone.
Response Formats
application/json, text/json, application/xml, text/xml
Sample:
Sample not available.