GET /api/Home/{idCategoria}/produtos

Explore os produtos que fazem parte de uma categoria específica, revelando detalhes sobre cada um deles.

Headers

  • ebbesenviroment string Required

Path parameters

  • idCategoria string Required

Responses

  • 200

    OK

GET /api/Home/{idCategoria}/produtos
curl \
 -X GET https://api.e-bees.com.br/api/Home/<long>/produtos \
 -H "ebbesenviroment: https://sandbox.e-bees.com.br"
Response examples (200)
{
  "items": [
    {
      "id": 3142,
      "nome": "PECAS",
      "chaveIndiceTextual": "pecas",
      "descricao": "PECAS",
      "fornecedor": "SUPERREPARO",
      "informacoesGerais": "",
      "referencia": "R0206",
      "categoria": "CHAVEIRO",
      "idCategoria": 51,
      "valorProduto": 30.0,
      "tempoExecucaoSegundos": 9000,
      "enabled": true,
      "createdAt": "2023-05-21T00:00:00",
      "updatedAt": "2023-05-21T00:00:00",
      "valorServico": 30.0,
      "status": 2,
      "idVarejista": "5b7e6985-6427-4965-bcea-4d067410d045",
      "nomeVarejista": "ACME Reparos US",
      "imagens": [
        {
          "id": 1,
          "idProduto": 3142,
          "urlImagem": "https://picsum.photos/536/354?blur=2&randon=3142",
          "legenda": "..",
          "ordem": 1,
          "_links": {}
        }
      ],
      "partes": [],
      "dicas": [],
      "idServico": 11,
      "_links": {
        "self": {
          "rel": "Home/HomeGetProdutosCategoria",
          "href": "http://api.e-bees.com.br/api/Home/51/produtos",
          "method": "GET"
        }
      }
    }
  ],
  "_links": {
    "self": {
      "rel": "Home/HomeGetProdutosCategoria",
      "href": "http://api.e-bees.com.br/api/Home/51/produtos",
      "method": "GET"
    }
  }
}