Shopping de Preços

Listagem de Categorias

Retorna a lista de categorias disponíveis para envio de produtos para a Plataforma.


URL:

POST https://api.shoppingdeprecos.com.br/categorias


Exemplo em PHP

$parametros = array();
$parametros['email'] = {email};
$parametros['senha'] = {senha};
$parametros['IntegracaoID'] = {integracao};
$parametros['PlataformaID'] = {plataforma};

$curl = curl_init();
curl_setopt_array($curl, array(
    CURLOPT_URL => 'https://app.shoppingdeprecos.com.br/api/categorias',
    CURLOPT_RETURNTRANSFER => true,
    CURLOPT_ENCODING => '',
    CURLOPT_MAXREDIRS => 10,
    CURLOPT_TIMEOUT => 0,
    CURLOPT_FOLLOWLOCATION => true,
    CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
    CURLOPT_CUSTOMREQUEST => 'POST',
    CURLOPT_POSTFIELDS => http_build_query($parametros),
    CURLOPT_HTTPHEADER => [ 'Content-Type: application/x-www-form-urlencoded' ],
));


$response = curl_exec($curl);
curl_close($curl);
echo $response;

Resposta:

{
    "status": true,
    "registros": [
       {
         "id": "130157",
         "nome": "Notebooks",
         "filhos": [],
         "temFilhos": false,
         "departamento": 0
       },
       {
        "id": "2005",
        "nome": "Periféricos",
        "filhos": [
            {
              "id": "200513",
              "nome": "Mouse e Teclado",
              "filhos": [],
              "temFilhos": false,
              "departamento": "2005"
            }  
        ],
        "temFilhos": false,
        "departamento": 0
       },
  ]
}