POST api/Informes/Productos

Request Information

URI Parameters

None.

Body Parameters

InformeVentaProductosDTO
NameDescriptionTypeAdditional information
ListaVentaProductos

Collection of VentaProductosDto

None.

FechaDesde2

string

None.

FechaHasta2

string

None.

NombreUsuario

string

None.

NombreOrganizacion

string

None.

Tipo

integer

None.

monedaSimbolo

string

None.

Request Formats

application/json, text/json

Sample:
{
  "ListaVentaProductos": [
    {
      "Producto": "sample string 1",
      "Categoria": "sample string 2",
      "CantidadVendida": 3.0,
      "Total": 4.0,
      "Costo": 5.0
    },
    {
      "Producto": "sample string 1",
      "Categoria": "sample string 2",
      "CantidadVendida": 3.0,
      "Total": 4.0,
      "Costo": 5.0
    }
  ],
  "FechaDesde2": "sample string 1",
  "FechaHasta2": "sample string 2",
  "NombreUsuario": "sample string 3",
  "NombreOrganizacion": "sample string 4",
  "Tipo": 5,
  "monedaSimbolo": "sample string 6"
}

application/xml, text/xml

Sample:
<InformeVentaProductosDTO xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/YALO_API_Reportes.Controllers.Informes.Models">
  <FechaDesde2>sample string 1</FechaDesde2>
  <FechaHasta2>sample string 2</FechaHasta2>
  <NombreOrganizacion>sample string 4</NombreOrganizacion>
  <NombreUsuario>sample string 3</NombreUsuario>
  <Tipo>5</Tipo>
  <monedaSimbolo>sample string 6</monedaSimbolo>
  <ListaVentaProductos>
    <VentaProductosDto>
      <CantidadVendida>3</CantidadVendida>
      <Categoria>sample string 2</Categoria>
      <Costo>5</Costo>
      <Producto>sample string 1</Producto>
      <Total>4</Total>
    </VentaProductosDto>
    <VentaProductosDto>
      <CantidadVendida>3</CantidadVendida>
      <Categoria>sample string 2</Categoria>
      <Costo>5</Costo>
      <Producto>sample string 1</Producto>
      <Total>4</Total>
    </VentaProductosDto>
  </ListaVentaProductos>
</InformeVentaProductosDTO>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

IHttpActionResult

None.

Response Formats

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

Sample:

Sample not available.