POST api/FacturaDetalle

No documentation available.

Request Information

Parameters

NameDescriptionAdditional information
FacturaDetalle
No documentation available.

Define this parameter in the request body.

Request body formats

application/json, text/json

Sample:
{
  "Id": 1,
  "IdFacura": 2,
  "IdProducto": 3,
  "Producto": "sample string 4",
  "Serie": "sample string 5",
  "Cantidad": 6.0,
  "PrecioDeVenta": 7.0,
  "Total": 8.0,
  "Descuento": 9.0,
  "TotalAPagar": 10.0
}

application/xml, text/xml

Sample:
<FacturaDetalleEn xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/EN.Facturas">
  <Cantidad>6</Cantidad>
  <Descuento>9</Descuento>
  <Id>1</Id>
  <IdFacura>2</IdFacura>
  <IdProducto>3</IdProducto>
  <PrecioDeVenta>7</PrecioDeVenta>
  <Producto>sample string 4</Producto>
  <Serie>sample string 5</Serie>
  <Total>8</Total>
  <TotalAPagar>10</TotalAPagar>
</FacturaDetalleEn>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

No documentation available.

Response body formats

application/json, text/json, application/xml, text/xml

Sample:

Sample not available.