GET api/TiendaVirtual/ObtenerProductoMasVendido/{id}

No documentation available.

Request Information

Parameters

NameDescriptionAdditional information
id
No documentation available.

Define this parameter in the request URI.

Response Information

No documentation available.

Response body formats

application/json, text/json

Sample:
{
  "idProducto": 1,
  "producto": "sample string 2",
  "imagen": "sample string 3",
  "precio": 4.0,
  "cantidad": 5
}

application/xml, text/xml

Sample:
<sp_ObtenerProductoMasVendido_Result xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Mantenimiento.Datos.Entidades">
  <cantidad>5</cantidad>
  <idProducto>1</idProducto>
  <imagen>sample string 3</imagen>
  <precio>4</precio>
  <producto>sample string 2</producto>
</sp_ObtenerProductoMasVendido_Result>