POST api/DetVentas
Request Information
URI Parameters
None.
Body Parameters
DetVentasModel| Name | Description | Type | Additional information |
|---|---|---|---|
| NumFactura | integer |
None. |
|
| NumLinea | decimal number |
None. |
|
| CodPro | string |
None. |
|
| NomPro | string |
None. |
|
| PreVenta | decimal number |
None. |
|
| PorDescto | decimal number |
None. |
|
| uniVen | decimal number |
None. |
|
| Comentarios | string |
None. |
|
| Principal | boolean |
None. |
Request Formats
application/json, text/json
Sample:
{
"NumFactura": 1,
"NumLinea": 2.0,
"CodPro": "sample string 3",
"NomPro": "sample string 4",
"PreVenta": 5.0,
"PorDescto": 6.0,
"uniVen": 7.0,
"Comentarios": "sample string 8",
"Principal": true
}
application/xml, text/xml
Sample:
<DetVentasModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/PosSicEWalletWA.ViewModels"> <CodPro>sample string 3</CodPro> <Comentarios>sample string 8</Comentarios> <NomPro>sample string 4</NomPro> <NumFactura>1</NumFactura> <NumLinea>2</NumLinea> <PorDescto>6</PorDescto> <PreVenta>5</PreVenta> <Principal>true</Principal> <uniVen>7</uniVen> </DetVentasModel>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
HttpResponseMessage| Name | Description | Type | Additional information |
|---|---|---|---|
| Version | Version |
None. |
|
| Content | HttpContent |
None. |
|
| StatusCode | HttpStatusCode |
None. |
|
| ReasonPhrase | string |
None. |
|
| Headers | Collection of Object |
None. |
|
| RequestMessage | HttpRequestMessage |
None. |
|
| IsSuccessStatusCode | boolean |
None. |