GET api/VentasTienda?token={token}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
token

string

Required

Body Parameters

None.

Response Information

Resource Description

VentasMesTienda
NameDescriptionTypeAdditional information
listado_ventas

Collection of VentasTienda

None.

titulo_dato

string

None.

ventas_totales

string

None.

Response Formats

application/json, text/json

Sample:
{
  "listado_ventas": [
    {
      "posicion": 1,
      "nombre": "sample string 2",
      "ventas": "sample string 3",
      "destacado": true
    },
    {
      "posicion": 1,
      "nombre": "sample string 2",
      "ventas": "sample string 3",
      "destacado": true
    }
  ],
  "titulo_dato": "sample string 1",
  "ventas_totales": "sample string 2"
}

application/xml, text/xml

Sample:
<VentasMesTienda xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/AppVendedoresREST">
  <listado_ventas>
    <VentasTienda>
      <destacado>true</destacado>
      <nombre>sample string 2</nombre>
      <posicion>1</posicion>
      <ventas>sample string 3</ventas>
    </VentasTienda>
    <VentasTienda>
      <destacado>true</destacado>
      <nombre>sample string 2</nombre>
      <posicion>1</posicion>
      <ventas>sample string 3</ventas>
    </VentasTienda>
  </listado_ventas>
  <titulo_dato>sample string 1</titulo_dato>
  <ventas_totales>sample string 2</ventas_totales>
</VentasMesTienda>