{"info":{"_postman_id":"b478541b-7633-4402-af4f-fc2374fee35c","name":"Braavo! API","description":"<html><head></head><body><p>Bem-vindo ao manual de integração Braavo!</p>\n<p>É através desta API que você integra o seu sistema ao nosso. Nossa API é REST e toda troca de dados é feita no formato JSON.<br>Cada endpoint é composto pelo domínio \"idêntico\" ao de acesso sua loja. Portanto, não esqueça de usar <strong>https://</strong> e <strong>www.</strong> nos endpoints.</p>\n<p>Exemplo:<br><a href=\"https://www.sualoja.com.br/api/pedidos/buscar/todos\">https://www.sualoja.com.br/api/pedidos/buscar/todos</a></p>\n<p>Outro ponto importante, não existe modo sandbox, portanto toda comunicação é feita em modo produção.</p>\n<h1 id=\"limite-de-requisicoes\">Limite de requisições</h1>\n<p>Para garantir o pleno funcionamento da plataforma, as chamadas da API são limitadas a apenas 1 requisição por segundo.</p>\n<p><strong>Toda requisição excedente será rejeitada e perdida.</strong></p>\n<h1 id=\"autenticacao\">Autenticação</h1>\n<p>Para autenticar as requisições, você deve \"gerar um hash\" em base64, composto por: {API_TOKEN} : {API_KEY}</p>\n<p>Para obter as credenciais acesse: <strong>Transmissões &gt; API Braavo &gt; Adicionar</strong></p>\n<p>Exemplo de como montar o hash usando PHP:<br><code>_'Authorization: Basic '.base64_encode($api_token.':'.$api_key)_</code></p>\n<h1 id=\"importante\">Importante</h1>\n<p>Não existe modo sandbox. Toda comunicação é realizada em modo produção.<br>Para realizar testes solicite a nossa equipe o acesso a nossa loja de testes.</p>\n<p>Lembre-se de enviar os cabeçalhos \"Content-Type\" e \"Authorization: Basic\" em todas requisições.</p>\n<h1 id=\"codigos-de-resposta\">Códigos de resposta</h1>\n<p>Usamos códigos HTTP para indicar o sucesso ou a falha de uma requisição.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th></th>\n<th></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>200</td>\n<td>OK</td>\n</tr>\n<tr>\n<td>400</td>\n<td>Algum campo obrigatório não foi enviado</td>\n</tr>\n<tr>\n<td>401</td>\n<td>Falha na autenticação</td>\n</tr>\n<tr>\n<td>404</td>\n<td>Endpoint não encontrado</td>\n</tr>\n<tr>\n<td>500</td>\n<td>Erro interno</td>\n</tr>\n</tbody>\n</table>\n</div><p>Caso precise de ajuda, fale com nossa equipe em <a href=\"https://mailto:suporte@braavo.com.br\">suporte@braavo.com.br</a></p>\n</body></html>","schema":"https://schema.getpostman.com/json/collection/v2.0.0/collection.json","toc":[{"content":"Limite de requisições","slug":"limite-de-requisicoes"},{"content":"Autenticação","slug":"autenticacao"},{"content":"Importante","slug":"importante"},{"content":"Códigos de resposta","slug":"codigos-de-resposta"}],"owner":"3806270","collectionId":"b478541b-7633-4402-af4f-fc2374fee35c","publishedId":"RVg59TS5","public":true,"customColor":{"top-bar":"FFFFFF","right-sidebar":"303030","highlight":"EF5B25"},"publishDate":"2023-05-21T13:55:36.000Z"},"item":[{"name":"Clientes","item":[{"name":"Cliente - Adicionar","id":"f8f54176-22bd-4bf1-9511-e8ec6128c149","request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"API_TOKEN"},{"key":"password","value":"API_KEY"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"warning":"This is a duplicate header and will be overridden by the Authorization header generated by Postman.","key":"Authorization","value":"Basic HASH_BASE64","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"ativo\": \"1\",\n    \"grupo_id\": \"1\",\n    \"email\": \"fulano@braavo.com.br\",\n    \"senha\": \"1234\",\n    \"pessoa\": \"1\",\n    \"nome\": \"Fulano da Silva\",\n    \"cpf\": \"645.398.461-08\",\n    \"estrangeiro\": \"0\",\n    \"tel_1\": \"1123053965\",\n    \"tel_2\": \"\",\n    \"nascimento\": \"09/05/1985\",\n    \"sexo\": \"M\",\n    \"empresa\": \"\",\n    \"cnpj\": \"\",\n    \"ie\": \"\",\n    \"im\": \"\",\n    \"newsletter\": \"1'\"\n}"},"url":"https://www.sualoja.com.br/api/clientes/adicionar","urlObject":{"path":["api","clientes","adicionar"],"host":["https://www.sualoja.com.br"],"query":[],"variable":[]}},"response":[],"_postman_id":"f8f54176-22bd-4bf1-9511-e8ec6128c149"},{"name":"Cliente - Editar","id":"b3e4fec6-dd5d-4581-96c2-c65661eb4f87","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"API_TOKEN"},{"key":"password","value":"API_KEY"}]},"isInherited":false},"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"warning":"This is a duplicate header and will be overridden by the Authorization header generated by Postman.","key":"Authorization","value":"Basic HASH_BASE64","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"id\": \"1\",\n    \"ativo\": \"1\",\n    \"grupo_id\": \"1\",\n    \"email\": \"fulano@braavo.com.br\",\n    \"senha\": \"1234\",\n    \"pessoa\": \"1\",\n    \"nome\": \"Fulano da Silva\",\n    \"cpf\": \"645.398.461-08\",\n    \"estrangeiro\": \"0\",\n    \"tel_1\": \"1123053965\",\n    \"tel_2\": \"\",\n    \"nascimento\": \"09/05/1985\",\n    \"sexo\": \"M\",\n    \"empresa\": \"\",\n    \"cnpj\": \"\",\n    \"ie\": \"\",\n    \"im\": \"\",\n    \"newsletter\": \"1'\"\n}"},"url":"https://www.sualoja.com.br/api/clientes/editar","description":"<p>Edita registro pelo ID Braavo!</p>\n","urlObject":{"path":["api","clientes","editar"],"host":["https://www.sualoja.com.br"],"query":[],"variable":[]}},"response":[],"_postman_id":"b3e4fec6-dd5d-4581-96c2-c65661eb4f87"},{"name":"Cliente - Apagar","id":"0d4611c8-4e9c-497f-bb55-823fba8c5357","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"API_TOKEN"},{"key":"password","value":"API_KEY"}]},"isInherited":false},"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"},{"warning":"This is a duplicate header and will be overridden by the Authorization header generated by Postman.","key":"Authorization","value":"Basic HASH_BASE64","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"id\": \"1\"\n}"},"url":"https://www.sualoja.com.br/api/clientes/apagar","description":"<p>Apaga registro usando ID Braavo!</p>\n","urlObject":{"path":["api","clientes","apagar"],"host":["https://www.sualoja.com.br"],"query":[],"variable":[]}},"response":[],"_postman_id":"0d4611c8-4e9c-497f-bb55-823fba8c5357"},{"name":"Cliente - Buscar Todos","id":"5b66d454-31ab-4d69-afee-8589ea579f27","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"<username>"},{"key":"password","value":"<password>"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"warning":"This is a duplicate header and will be overridden by the Authorization header generated by Postman.","key":"Authorization","value":"Basic HASH_BASE64","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"atual\": 1\n}"},"url":"https://www.sualoja.com.br/api/clientes/buscar/todos","description":"<p>Busca todos registros com paginação de resultados.</p>\n<p>É possível filtrar os resultados da busca usando um ou mais campos do JSON abaixo.</p>\n","urlObject":{"path":["api","clientes","buscar","todos"],"host":["https://www.sualoja.com.br"],"query":[],"variable":[]}},"response":[],"_postman_id":"5b66d454-31ab-4d69-afee-8589ea579f27"},{"name":"Cliente - Buscar por ID","id":"5527b677-aa59-4ac3-be02-12be4c804ded","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"API_TOKEN"},{"key":"password","value":"API_KEY"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"warning":"This is a duplicate header and will be overridden by the Authorization header generated by Postman.","key":"Authorization","value":"Basic HASH_BASE64","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"id\": \"120\"\n}"},"url":"https://www.sualoja.com.br/api/clientes/buscar/id","description":"<p>Busca registro pelo ID Braavo!</p>\n","urlObject":{"path":["api","clientes","buscar","id"],"host":["https://www.sualoja.com.br"],"query":[],"variable":[]}},"response":[],"_postman_id":"5527b677-aa59-4ac3-be02-12be4c804ded"}],"id":"7a2a2b69-c646-4675-aeb0-415e41254065","description":"<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Campo</th>\n<th>Tipo</th>\n<th>Padrão</th>\n<th>Obrigatório</th>\n<th>Valores</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>ativo</td>\n<td>int</td>\n<td>0</td>\n<td>sim</td>\n<td>0 = Inativo  <br />1 = Ativo  <br />2 = Arquivado</td>\n</tr>\n<tr>\n<td>grupo_id</td>\n<td>int</td>\n<td>1</td>\n<td>sim</td>\n<td>1 = Varejo</td>\n</tr>\n<tr>\n<td>email</td>\n<td>string</td>\n<td></td>\n<td>sim</td>\n<td></td>\n</tr>\n<tr>\n<td>senha</td>\n<td>string</td>\n<td></td>\n<td>sim</td>\n<td></td>\n</tr>\n<tr>\n<td>pessoa</td>\n<td>int</td>\n<td>1</td>\n<td>sim</td>\n<td>1 = Física  <br />2 = Jurídica</td>\n</tr>\n<tr>\n<td>nome</td>\n<td>string</td>\n<td></td>\n<td>sim</td>\n<td></td>\n</tr>\n<tr>\n<td>cpf</td>\n<td>string</td>\n<td></td>\n<td>sim</td>\n<td></td>\n</tr>\n<tr>\n<td>estrangeiro</td>\n<td>int</td>\n<td>0</td>\n<td>sim</td>\n<td>0 = Não  <br />1 = Sim</td>\n</tr>\n<tr>\n<td>tel_1</td>\n<td>string</td>\n<td></td>\n<td>não</td>\n<td></td>\n</tr>\n<tr>\n<td>tel_2</td>\n<td>string</td>\n<td></td>\n<td>não</td>\n<td></td>\n</tr>\n<tr>\n<td>nascimento</td>\n<td>date</td>\n<td>1900-01-01</td>\n<td>sim</td>\n<td></td>\n</tr>\n<tr>\n<td>sexo</td>\n<td>string</td>\n<td>M</td>\n<td>sim</td>\n<td>F = Feminino  <br />M = Masculino</td>\n</tr>\n<tr>\n<td>empresa</td>\n<td>string</td>\n<td></td>\n<td>não</td>\n<td></td>\n</tr>\n<tr>\n<td>cnpj</td>\n<td>string</td>\n<td></td>\n<td>não</td>\n<td></td>\n</tr>\n<tr>\n<td>ie</td>\n<td>string</td>\n<td></td>\n<td>não</td>\n<td></td>\n</tr>\n<tr>\n<td>im</td>\n<td>string</td>\n<td></td>\n<td>não</td>\n<td></td>\n</tr>\n<tr>\n<td>newsletter</td>\n<td>int</td>\n<td>0</td>\n<td>não</td>\n<td>0 = Não  <br />1 = Sim</td>\n</tr>\n</tbody>\n</table>\n</div>","event":[{"listen":"prerequest","script":{"id":"c1271761-c87d-4d28-b014-f2142b7f01b8","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"99d5bd44-4d2b-49d3-aa50-f26581aec226","type":"text/javascript","exec":[""]}}],"_postman_id":"7a2a2b69-c646-4675-aeb0-415e41254065"},{"name":"Clientes Endereços","item":[{"name":"Cliente Endereço - Buscar Todos","id":"136107fc-2f8b-4bae-965e-eea5aac4e970","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"<username>"},{"key":"password","value":"<password>"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"warning":"This is a duplicate header and will be overridden by the Authorization header generated by Postman.","key":"Authorization","value":"Basic HASH_BASE64","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"atual\": 1\n}"},"url":"https://www.sualoja.com.br/api/enderecos/buscar/todos","description":"<p>Busca todos registros com paginação de resultados.</p>\n<p>É possível filtrar os resultados da busca usando um ou mais campos do JSON abaixo.</p>\n","urlObject":{"path":["api","enderecos","buscar","todos"],"host":["https://www.sualoja.com.br"],"query":[],"variable":[]}},"response":[],"_postman_id":"136107fc-2f8b-4bae-965e-eea5aac4e970"},{"name":"Cliente Endereço - Buscar por ID","id":"3191b3e2-c6be-4647-ad14-c8808423a9cb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"API_TOKEN"},{"key":"password","value":"API_KEY"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"warning":"This is a duplicate header and will be overridden by the Authorization header generated by Postman.","key":"Authorization","value":"Basic HASH_BASE64","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"id\": \"10\"\n}"},"url":"https://www.sualoja.com.br/api/enderecos/buscar/id","description":"<p>Busca registro pelo ID Braavo!</p>\n<p><strong>Aviso: Este ID é do endereço. <br />Para buscar todos endereços de um usuário, utilize o endpoint /api/enderecos/buscar/todos</strong></p>\n","urlObject":{"path":["api","enderecos","buscar","id"],"host":["https://www.sualoja.com.br"],"query":[],"variable":[]}},"response":[],"_postman_id":"3191b3e2-c6be-4647-ad14-c8808423a9cb"}],"id":"034595cd-edaf-4e1d-aec3-85a00468f0d8","description":"<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Campo</th>\n<th>Tipo</th>\n<th>Padrão</th>\n<th>Obrigatório</th>\n<th>Valores</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>ativo</td>\n<td>int</td>\n<td>0</td>\n<td>sim</td>\n<td>0 = Inativo  <br />1 = Ativo  <br />2 = Arquivado</td>\n</tr>\n<tr>\n<td>grupo_id</td>\n<td>int</td>\n<td>1</td>\n<td>sim</td>\n<td>1 = Varejo</td>\n</tr>\n<tr>\n<td>email</td>\n<td>string</td>\n<td></td>\n<td>sim</td>\n<td></td>\n</tr>\n<tr>\n<td>senha</td>\n<td>string</td>\n<td></td>\n<td>sim</td>\n<td></td>\n</tr>\n<tr>\n<td>pessoa</td>\n<td>int</td>\n<td>1</td>\n<td>sim</td>\n<td>1 = Física  <br />2 = Jurídica</td>\n</tr>\n<tr>\n<td>nome</td>\n<td>string</td>\n<td></td>\n<td>sim</td>\n<td></td>\n</tr>\n<tr>\n<td>cpf</td>\n<td>string</td>\n<td></td>\n<td>sim</td>\n<td></td>\n</tr>\n<tr>\n<td>estrangeiro</td>\n<td>int</td>\n<td>0</td>\n<td>sim</td>\n<td>0 = Não  <br />1 = Sim</td>\n</tr>\n<tr>\n<td>tel_1</td>\n<td>string</td>\n<td></td>\n<td>não</td>\n<td></td>\n</tr>\n<tr>\n<td>tel_2</td>\n<td>string</td>\n<td></td>\n<td>não</td>\n<td></td>\n</tr>\n<tr>\n<td>nascimento</td>\n<td>date</td>\n<td>1900-01-01</td>\n<td>sim</td>\n<td></td>\n</tr>\n<tr>\n<td>sexo</td>\n<td>string</td>\n<td>M</td>\n<td>sim</td>\n<td>F = Feminino  <br />M = Masculino</td>\n</tr>\n<tr>\n<td>empresa</td>\n<td>string</td>\n<td></td>\n<td>não</td>\n<td></td>\n</tr>\n<tr>\n<td>cnpj</td>\n<td>string</td>\n<td></td>\n<td>não</td>\n<td></td>\n</tr>\n<tr>\n<td>ie</td>\n<td>string</td>\n<td></td>\n<td>não</td>\n<td></td>\n</tr>\n<tr>\n<td>im</td>\n<td>string</td>\n<td></td>\n<td>não</td>\n<td></td>\n</tr>\n<tr>\n<td>newsletter</td>\n<td>int</td>\n<td>0</td>\n<td>não</td>\n<td>0 = Não  <br />1 = Sim</td>\n</tr>\n</tbody>\n</table>\n</div>","event":[{"listen":"prerequest","script":{"id":"c1271761-c87d-4d28-b014-f2142b7f01b8","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"99d5bd44-4d2b-49d3-aa50-f26581aec226","type":"text/javascript","exec":[""]}}],"_postman_id":"034595cd-edaf-4e1d-aec3-85a00468f0d8"},{"name":"Carteiras","item":[{"name":"Carteira - Adicionar","id":"a1558d77-9352-4dc5-8ca1-f95fb0d54842","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"API_TOKEN"},{"key":"password","value":"API_KEY"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"warning":"This is a duplicate header and will be overridden by the Authorization header generated by Postman.","key":"Authorization","value":"Basic HASH_BASE64","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"usuario_id\": \"1\",\n    \"pedido_id\": \"123\",\n    \"valor_carteira\": \"50.00\",\n    \"movimentacao\": \"entrada\",\n    \"extra\": \"Comentário Adicional\"\n}"},"url":"https://www.sualoja.com.br/api/carteiras/adicionar","description":"<p>Importante: </p>\n<ol>\n<li>É possível adicionar saldos sem vinculá-los à um pedido.</li>\n</ol>\n<p>Caso queira vincular o saldo com um pedido, mas você não tem o usuario_id, envie apenas o pedido_id no JSON.</p>\n","urlObject":{"path":["api","carteiras","adicionar"],"host":["https://www.sualoja.com.br"],"query":[],"variable":[]}},"response":[],"_postman_id":"a1558d77-9352-4dc5-8ca1-f95fb0d54842"},{"name":"Carteira - Buscar Todos","id":"0bb03c21-3c83-4879-8bde-89c83145ae40","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"API_TOKEN"},{"key":"password","value":"API_KEY"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"warning":"This is a duplicate header and will be overridden by the Authorization header generated by Postman.","key":"Authorization","value":"Basic HASH_BASE64","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"atual\": 1\n}"},"url":"https://www.sualoja.com.br/api/carteiras/buscar/todos","description":"<p>Busca todos registros com paginação de resultados.</p>\n<p>É possível filtrar os resultados da busca usando um ou mais campos do JSON abaixo.</p>\n","urlObject":{"path":["api","carteiras","buscar","todos"],"host":["https://www.sualoja.com.br"],"query":[],"variable":[]}},"response":[],"_postman_id":"0bb03c21-3c83-4879-8bde-89c83145ae40"},{"name":"Carteira - Buscar por Usuario ID","id":"576e21bf-5a68-46ca-89b2-5f263a758dae","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"API_TOKEN"},{"key":"password","value":"API_KEY"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"warning":"This is a duplicate header and will be overridden by the Authorization header generated by Postman.","key":"Authorization","value":"Basic HASH_BASE64","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"usuario_id\": \"1\"\n}"},"url":"https://www.sualoja.com.br/api/carteiras/buscar/usuario_id","description":"<p>Busca registro pelo ID Braavo!</p>\n","urlObject":{"path":["api","carteiras","buscar","usuario_id"],"host":["https://www.sualoja.com.br"],"query":[],"variable":[]}},"response":[],"_postman_id":"576e21bf-5a68-46ca-89b2-5f263a758dae"}],"id":"02fd833e-2166-4bc4-8354-63ff019c43df","description":"<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Campo</th>\n<th>Tipo</th>\n<th>Padrão</th>\n<th>Obrigatório</th>\n<th>Valores</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>ativo</td>\n<td>int</td>\n<td>0</td>\n<td>sim</td>\n<td>0 = Inativo  <br />1 = Ativo  <br />2 = Arquivado</td>\n</tr>\n<tr>\n<td>data_1</td>\n<td>date</td>\n<td>2010-01-01</td>\n<td>sim</td>\n<td></td>\n</tr>\n<tr>\n<td>data_2</td>\n<td>date</td>\n<td>2050-12-31</td>\n<td>sim</td>\n<td></td>\n</tr>\n<tr>\n<td>nome</td>\n<td>string</td>\n<td></td>\n<td>sim</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","event":[{"listen":"prerequest","script":{"id":"0d987bca-2119-4d8c-a306-4b0423d7eb57","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"48150c23-2313-463c-9eb1-a10ac8ca982f","type":"text/javascript","exec":[""]}}],"_postman_id":"02fd833e-2166-4bc4-8354-63ff019c43df"},{"name":"Vale-Desconto","item":[{"name":"Vale-Desconto - Adicionar","id":"47e50795-707c-465d-9c6a-9b18fe5af2a8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"API_TOKEN"},{"key":"password","value":"API_KEY"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"warning":"This is a duplicate header and will be overridden by the Authorization header generated by Postman.","key":"Authorization","value":"Basic HASH_BASE64","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"ativo\": \"1\",\n    \"data_1\": \"2015-10-27\",\n    \"data_2\": \"2016-02-04\",\n    \"nome\": \"Vale-Presente 5\",\n    \"codigo\": \"2966312988\",\n    \"quantidade\": \"1\",\n    \"desconto_tipo\": \"F\",\n    \"desconto_valor\": \"50.00\",\n    \"carrinho_valor\": \"0.00\",\n    \"carrinho_qtde\": \"0\",\n    \"frete_gratis\": \"0\",\n    \"desconto_produto\": \"0\",\n    \"desconto_pagamento\": \"0\",\n    \"reutilizavel\": \"0\"\n}"},"url":"https://www.sualoja.com.br/api/descontos/adicionar","urlObject":{"path":["api","descontos","adicionar"],"host":["https://www.sualoja.com.br"],"query":[],"variable":[]}},"response":[],"_postman_id":"47e50795-707c-465d-9c6a-9b18fe5af2a8"},{"name":"Vale-Desconto - Editar","id":"90c1ef6f-60f4-48b7-bac8-cfcc358b5310","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"API_TOKEN"},{"key":"password","value":"API_KEY"}]},"isInherited":false},"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"warning":"This is a duplicate header and will be overridden by the Authorization header generated by Postman.","key":"Authorization","value":"Basic HASH_BASE64","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"id\": \"1\",\n    \"ativo\": \"1\",\n    \"data_1\": \"2015-10-27\",\n    \"data_2\": \"2016-02-04\",\n    \"nome\": \"Vale-Presente 5\",\n    \"codigo\": \"2966312988\",\n    \"quantidade\": \"1\",\n    \"desconto_tipo\": \"F\",\n    \"desconto_valor\": \"50.00\",\n    \"carrinho_valor\": \"0.00\",\n    \"arrinho_qtde\": \"0\",\n    \"frete_gratis\": \"0\",\n    \"desconto_produto\": \"0\",\n    \"desconto_pagamento\": \"0\",\n    \"reutilizavel\": \"0\"\n}"},"url":"https://www.sualoja.com.br/api/descontos/editar","description":"<p>Edita registro pelo ID Braavo!</p>\n","urlObject":{"path":["api","descontos","editar"],"host":["https://www.sualoja.com.br"],"query":[],"variable":[]}},"response":[],"_postman_id":"90c1ef6f-60f4-48b7-bac8-cfcc358b5310"},{"name":"Vale-Desconto - Buscar Todos","id":"922a1fed-a78c-4279-ac77-81eac0bc7bbb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"API_TOKEN"},{"key":"password","value":"API_KEY"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"warning":"This is a duplicate header and will be overridden by the Authorization header generated by Postman.","key":"Authorization","value":"Basic HASH_BASE64","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"atual\": \"1\",\n    \"data_alterado\": \"2020-10-22\",\n    \"data_criado\": \"2020-08-28\"\n}"},"url":"https://www.sualoja.com.br/api/descontos/buscar/todos","description":"<p>Busca todos registros com paginação de resultados.</p>\n<p>É possível filtrar os resultados da busca usando um ou mais campos do JSON abaixo.</p>\n","urlObject":{"path":["api","descontos","buscar","todos"],"host":["https://www.sualoja.com.br"],"query":[],"variable":[]}},"response":[],"_postman_id":"922a1fed-a78c-4279-ac77-81eac0bc7bbb"},{"name":"Vale-Desconto - Buscar por ID","id":"cb74610c-1bc1-4d0c-8ccc-c058f022e381","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"API_TOKEN"},{"key":"password","value":"API_KEY"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"warning":"This is a duplicate header and will be overridden by the Authorization header generated by Postman.","key":"Authorization","value":"Basic HASH_BASE64","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"id\": \"1\"\n}"},"url":"https://www.sualoja.com.br/api/descontos/buscar/id","description":"<p>Busca registro pelo ID Braavo!</p>\n","urlObject":{"path":["api","descontos","buscar","id"],"host":["https://www.sualoja.com.br"],"query":[],"variable":[]}},"response":[],"_postman_id":"cb74610c-1bc1-4d0c-8ccc-c058f022e381"}],"id":"5f947435-aefb-4874-bc8d-32dcaad878f6","description":"<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Campo</th>\n<th>Tipo</th>\n<th>Padrão</th>\n<th>Obrigatório</th>\n<th>Valores</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>ativo</td>\n<td>int</td>\n<td>0</td>\n<td>sim</td>\n<td>0 = Inativo  <br />1 = Ativo  <br />2 = Arquivado</td>\n</tr>\n<tr>\n<td>data_1</td>\n<td>date</td>\n<td>2010-01-01</td>\n<td>sim</td>\n<td></td>\n</tr>\n<tr>\n<td>data_2</td>\n<td>date</td>\n<td>2050-12-31</td>\n<td>sim</td>\n<td></td>\n</tr>\n<tr>\n<td>nome</td>\n<td>string</td>\n<td></td>\n<td>sim</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"tabela-de-tipos\">Tabela de tipos</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Código</th>\n<th>Tipo</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>0</td>\n<td>Padrão</td>\n</tr>\n<tr>\n<td>1</td>\n<td>Privado</td>\n</tr>\n<tr>\n<td>2</td>\n<td>Aniversariantes</td>\n</tr>\n<tr>\n<td>3</td>\n<td>1a Compra Cadastro</td>\n</tr>\n<tr>\n<td>4</td>\n<td>1a Compra Newsletter</td>\n</tr>\n<tr>\n<td>7</td>\n<td>1a Avaliação</td>\n</tr>\n<tr>\n<td>5</td>\n<td>Pontos Resgatados</td>\n</tr>\n<tr>\n<td>6</td>\n<td>Vale-Troca</td>\n</tr>\n<tr>\n<td>20</td>\n<td>Cartão Presente</td>\n</tr>\n</tbody>\n</table>\n</div>","event":[{"listen":"prerequest","script":{"id":"5dd9eedc-6427-4071-b19b-5c72a428cb41","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"f3b07135-4003-44d0-a942-aa1eebbb23dd","type":"text/javascript","exec":[""]}}],"_postman_id":"5f947435-aefb-4874-bc8d-32dcaad878f6"},{"name":"Envios","item":[{"name":"Envios - Buscar Todos","id":"5a4d2c11-ff5e-4b4a-bc4e-018ad83b7888","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"API_TOKEN"},{"key":"password","value":"API_KEY"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"warning":"This is a duplicate header and will be overridden by the Authorization header generated by Postman.","key":"Authorization","value":"Basic HASH_BASE64","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"atual\": 1,\n    \"data_criado\": \"2018-08-03\"\n}"},"url":"https://www.sualoja.com.br/api/envios/buscar/todos","description":"<p>Busca todos registros com paginação de resultados.</p>\n","urlObject":{"path":["api","envios","buscar","todos"],"host":["https://www.sualoja.com.br"],"query":[],"variable":[]}},"response":[],"_postman_id":"5a4d2c11-ff5e-4b4a-bc4e-018ad83b7888"},{"name":"Envios - Buscar por Pedido","id":"11de00ad-1bf5-4785-a719-5fad11e30745","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"API_TOKEN"},{"key":"password","value":"API_KEY"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"warning":"This is a duplicate header and will be overridden by the Authorization header generated by Postman.","key":"Authorization","value":"Basic HASH_BASE64","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"pedido_id\": \"2951\"\n}"},"url":"https://www.sualoja.com.br/api/envios/buscar/pedido_id","description":"<p>Busca registro pelo ID Braavo!</p>\n","urlObject":{"path":["api","envios","buscar","pedido_id"],"host":["https://www.sualoja.com.br"],"query":[],"variable":[]}},"response":[],"_postman_id":"11de00ad-1bf5-4785-a719-5fad11e30745"}],"id":"6c84ff2e-f254-40af-8824-08d54ef083f9","description":"<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Campo</th>\n<th>Tipo</th>\n<th>Padrão</th>\n<th>Obrigatório</th>\n<th>Valores</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>pedido_id</td>\n<td>int</td>\n<td></td>\n<td>sim</td>\n<td></td>\n</tr>\n<tr>\n<td>data</td>\n<td>date</td>\n<td></td>\n<td>sim</td>\n<td>aaaa-mm-dd</td>\n</tr>\n<tr>\n<td>numero</td>\n<td>string</td>\n<td></td>\n<td>sim</td>\n<td></td>\n</tr>\n<tr>\n<td>serie</td>\n<td>string</td>\n<td></td>\n<td>sim</td>\n<td></td>\n</tr>\n<tr>\n<td>acesso</td>\n<td>string</td>\n<td></td>\n<td>sim</td>\n<td></td>\n</tr>\n<tr>\n<td>url</td>\n<td>string</td>\n<td></td>\n<td>sim</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","event":[{"listen":"prerequest","script":{"id":"6966ff29-b41d-4946-860f-ea379dba1597","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"e6a0848b-8734-4509-a7d7-f6db8ebee0d6","type":"text/javascript","exec":[""]}}],"_postman_id":"6c84ff2e-f254-40af-8824-08d54ef083f9"},{"name":"Especificações","item":[{"name":"Especificação - Adicionar","id":"82b93aa2-6884-4938-971f-ff26d9b09083","request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"API_TOKEN"},{"key":"password","value":"API_KEY"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Basic HASH_BASE64","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"pai_id\": \"0\",\n    \"ativo\": \"1\",\n    \"nome\": \"Nome da Variacao\"\n}"},"url":"https://www.sualoja.com.br/api/especificacoes/adicionar","urlObject":{"path":["api","especificacoes","adicionar"],"host":["https://www.sualoja.com.br"],"query":[],"variable":[]}},"response":[],"_postman_id":"82b93aa2-6884-4938-971f-ff26d9b09083"},{"name":"Especificação - Editar","id":"0c5b2d98-acc6-46a5-b51c-121f253b13ae","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"API_TOKEN"},{"key":"password","value":"API_KEY"}]},"isInherited":false},"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Basic HASH_BASE64","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"id\": \"1\",\n    \"pai_id\": \"0\",\n    \"ativo\": \"1\",\n    \"nome\": \"Nome da Variacao Alterado\"\n}"},"url":"https://www.sualoja.com.br/api/especificacoes/editar","description":"<p>Edita registro pelo ID Braavo!</p>\n","urlObject":{"path":["api","especificacoes","editar"],"host":["https://www.sualoja.com.br"],"query":[],"variable":[]}},"response":[],"_postman_id":"0c5b2d98-acc6-46a5-b51c-121f253b13ae"},{"name":"Especificação - Apagar","id":"fe67b39d-a88c-47c0-af9e-8f90b78f65e5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"API_TOKEN"},{"key":"password","value":"API_KEY"}]},"isInherited":false},"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Basic HASH_BASE64","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"id\": \"1\"\n}"},"url":"https://www.sualoja.com.br/api/especificacoes/apagar","description":"<p>Apaga registro usando ID Braavo!</p>\n","urlObject":{"path":["api","especificacoes","apagar"],"host":["https://www.sualoja.com.br"],"query":[],"variable":[]}},"response":[],"_postman_id":"fe67b39d-a88c-47c0-af9e-8f90b78f65e5"},{"name":"Especificação - Buscar Todos","id":"4b679f34-05c9-47dd-a936-3a0519030832","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"API_TOKEN"},{"key":"password","value":"API_KEY"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Basic HASH_BASE64","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"atual\": \"1\",\n    \"data_alterado\": \"2020-10-22\",\n    \"data_criado\": \"2020-08-28\"\n}"},"url":"https://www.sualoja.com.br/api/especificacoes/buscar/todos","description":"<p>Busca todos registros com paginação de resultados.</p>\n<p>É possível filtrar os resultados da busca usando um ou mais campos do JSON abaixo.</p>\n","urlObject":{"path":["api","especificacoes","buscar","todos"],"host":["https://www.sualoja.com.br"],"query":[],"variable":[]}},"response":[],"_postman_id":"4b679f34-05c9-47dd-a936-3a0519030832"},{"name":"Especificação - Buscar por ID","id":"f0ca179e-48f1-4034-999c-cae5b3df15b0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"API_TOKEN"},{"key":"password","value":"API_KEY"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Basic HASH_BASE64","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"id\": \"1\"\n}"},"url":"https://www.sualoja.com.br/api/especificacoes/buscar/id","description":"<p>Busca registro pelo ID Braavo!</p>\n","urlObject":{"path":["api","especificacoes","buscar","id"],"host":["https://www.sualoja.com.br"],"query":[],"variable":[]}},"response":[],"_postman_id":"f0ca179e-48f1-4034-999c-cae5b3df15b0"},{"name":"Especificação - Buscar por Subitens","id":"568fc35d-7bb5-4c4d-9dc1-2153d0da37bf","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"API_TOKEN"},{"key":"password","value":"API_KEY"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Basic HASH_BASE64","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"id\": \"0\"\n}"},"url":"https://www.sualoja.com.br/api/especificacoes/buscar/pai","description":"<p>Busca subvariações pelo ID Braavo!</p>\n","urlObject":{"path":["api","especificacoes","buscar","pai"],"host":["https://www.sualoja.com.br"],"query":[],"variable":[]}},"response":[],"_postman_id":"568fc35d-7bb5-4c4d-9dc1-2153d0da37bf"}],"id":"1ee4935f-f718-4f01-bf2b-4fb8d5c8fd7f","description":"<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Campo</th>\n<th>Tipo</th>\n<th>Padrão</th>\n<th>Obrigatório</th>\n<th>Valores</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>pai_id</td>\n<td>int</td>\n<td>0</td>\n<td>sim</td>\n<td></td>\n</tr>\n<tr>\n<td>ativo</td>\n<td>int</td>\n<td>0</td>\n<td>sim</td>\n<td>0 = Inativo  <br />1 = Ativo  <br />2 = Arquivado</td>\n</tr>\n<tr>\n<td>nome</td>\n<td>string</td>\n<td></td>\n<td>sim</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","event":[{"listen":"prerequest","script":{"id":"0607a6d7-a3c3-4e58-b412-693aba08e0eb","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"57584210-fa58-478f-b2e5-3c5a1a0171f8","type":"text/javascript","exec":[""]}}],"_postman_id":"1ee4935f-f718-4f01-bf2b-4fb8d5c8fd7f"},{"name":"Estornos","item":[{"name":"Estornos - Parcial por Pedido","id":"bdb2b6e0-9a6d-4da4-9c7c-ffa409b0319e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"API_TOKEN"},{"key":"password","value":"API_KEY"}]},"isInherited":false},"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"warning":"This is a duplicate header and will be overridden by the Authorization header generated by Postman.","key":"Authorization","value":"Basic HASH_BASE64","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"pedido_id\": \"3121\",\n  \"valor\": 1.00\n}"},"url":"https://www.sualoja.com.br/api/retornos/cancelar_parcial/pedido_id","description":"<p>Estorno parcial do pedido pelo ID Braavo!</p>\n<p>Disponível apenas para pedidos: Mercado Pago e Pagar Me.</p>\n","urlObject":{"path":["api","retornos","cancelar_parcial","pedido_id"],"host":["https://www.sualoja.com.br"],"query":[],"variable":[]}},"response":[],"_postman_id":"bdb2b6e0-9a6d-4da4-9c7c-ffa409b0319e"}],"id":"2ecec8a5-483f-4703-9550-136df6910997","description":"<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Campo</th>\n<th>Tipo</th>\n<th>Padrão</th>\n<th>Obrigatório</th>\n<th>Valores</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>pedido_id</td>\n<td>int</td>\n<td></td>\n<td>sim</td>\n<td></td>\n</tr>\n<tr>\n<td>data</td>\n<td>date</td>\n<td></td>\n<td>sim</td>\n<td>aaaa-mm-dd</td>\n</tr>\n<tr>\n<td>numero</td>\n<td>string</td>\n<td></td>\n<td>sim</td>\n<td></td>\n</tr>\n<tr>\n<td>serie</td>\n<td>string</td>\n<td></td>\n<td>sim</td>\n<td></td>\n</tr>\n<tr>\n<td>acesso</td>\n<td>string</td>\n<td></td>\n<td>sim</td>\n<td></td>\n</tr>\n<tr>\n<td>url</td>\n<td>string</td>\n<td></td>\n<td>sim</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","event":[{"listen":"prerequest","script":{"id":"b49e83d7-e535-4ada-ad71-fe68bae5a122","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"9542a1f2-d07a-4458-8b63-ee915f53022b","type":"text/javascript","exec":[""]}}],"_postman_id":"2ecec8a5-483f-4703-9550-136df6910997"},{"name":"Lista Newsletter","item":[{"name":"Lista Newsletter - Adicionar","id":"06591c6d-e520-4d6d-b3f3-202cea68666b","request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"API_TOKEN"},{"key":"password","value":"API_KEY"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"warning":"This is a duplicate header and will be overridden by the Authorization header generated by Postman.","key":"Authorization","value":"Basic HASH_BASE64","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"ativo\": \"1\",\n    \"nome\": \"Fulano da Silva\",\n    \"email\": \"fulano@braavo.com.br\"\n}"},"url":"https://www.sualoja.com.br/api/lista_newsletter/adicionar","urlObject":{"path":["api","lista_newsletter","adicionar"],"host":["https://www.sualoja.com.br"],"query":[],"variable":[]}},"response":[],"_postman_id":"06591c6d-e520-4d6d-b3f3-202cea68666b"},{"name":"Lista Newsletter - Editar","id":"998741c7-f064-4cb6-af7f-dff07f175bac","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"API_TOKEN"},{"key":"password","value":"API_KEY"}]},"isInherited":false},"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"warning":"This is a duplicate header and will be overridden by the Authorization header generated by Postman.","key":"Authorization","value":"Basic HASH_BASE64","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"id\": \"1\",\n    \"ativo\": \"1\",\n    \"nome\": \"Fulano da Silva\",\n    \"email\": \"fulano@braavo.com.br\"\n}"},"url":"https://www.sualoja.com.br/api/lista_newsletter/editar","description":"<p>Edita registro pelo ID Braavo!</p>\n","urlObject":{"path":["api","lista_newsletter","editar"],"host":["https://www.sualoja.com.br"],"query":[],"variable":[]}},"response":[],"_postman_id":"998741c7-f064-4cb6-af7f-dff07f175bac"},{"name":"Lista Newsletter - Apagar","id":"0425a003-1025-4138-af0d-b77fa88c7e34","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"API_TOKEN"},{"key":"password","value":"API_KEY"}]},"isInherited":false},"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"},{"warning":"This is a duplicate header and will be overridden by the Authorization header generated by Postman.","key":"Authorization","value":"Basic HASH_BASE64","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"id\": \"1\"\n}"},"url":"https://www.sualoja.com.br/api/lista_newsletter/apagar","description":"<p>Apaga registro usando ID Braavo!</p>\n","urlObject":{"path":["api","lista_newsletter","apagar"],"host":["https://www.sualoja.com.br"],"query":[],"variable":[]}},"response":[],"_postman_id":"0425a003-1025-4138-af0d-b77fa88c7e34"},{"name":"Lista Newsletter - Buscar Todos","id":"7187d06c-1464-47bf-97b7-4a9b9d918a79","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"API_TOKEN"},{"key":"password","value":"API_KEY"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"warning":"This is a duplicate header and will be overridden by the Authorization header generated by Postman.","key":"Authorization","value":"Basic HASH_BASE64","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"atual\": \"1\",\n    \"data_alterado\": \"2020-10-22\",\n    \"data_criado\": \"2020-08-28\"\n}"},"url":"https://www.sualoja.com.br/api/lista_newsletter/buscar/todos","description":"<p>Busca todos registros com paginação de resultados.</p>\n<p>É possível filtrar os resultados da busca usando um ou mais campos do JSON abaixo.</p>\n","urlObject":{"path":["api","lista_newsletter","buscar","todos"],"host":["https://www.sualoja.com.br"],"query":[],"variable":[]}},"response":[],"_postman_id":"7187d06c-1464-47bf-97b7-4a9b9d918a79"},{"name":"Lista Newsletter - Buscar por ID","id":"85c0517c-e969-4598-bce9-88d8077101d5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"API_TOKEN"},{"key":"password","value":"API_KEY"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"warning":"This is a duplicate header and will be overridden by the Authorization header generated by Postman.","key":"Authorization","value":"Basic HASH_BASE64","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"email\": \"fulano@braavo.com.br\"\n}"},"url":"https://www.sualoja.com.br/api/lista_newsletter/buscar/email","description":"<p>Busca registro pelo ID Braavo!</p>\n","urlObject":{"path":["api","lista_newsletter","buscar","email"],"host":["https://www.sualoja.com.br"],"query":[],"variable":[]}},"response":[],"_postman_id":"85c0517c-e969-4598-bce9-88d8077101d5"}],"id":"e8c9f6cf-ac4c-41ff-9dd6-ba2895d46811","description":"<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Campo</th>\n<th>Tipo</th>\n<th>Padrão</th>\n<th>Obrigatório</th>\n<th>Valores</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>ativo</td>\n<td>int</td>\n<td>0</td>\n<td>sim</td>\n<td>0 = Inativo  <br />1 = Ativo  <br />2 = Arquivado</td>\n</tr>\n<tr>\n<td>nome</td>\n<td>string</td>\n<td></td>\n<td>não</td>\n<td></td>\n</tr>\n<tr>\n<td>email</td>\n<td>string</td>\n<td></td>\n<td>sim</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","event":[{"listen":"prerequest","script":{"id":"50439e67-2539-460c-b427-1739507673c6","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"5c338252-a37f-4a03-b658-f2b7b475f089","type":"text/javascript","exec":[""]}}],"_postman_id":"e8c9f6cf-ac4c-41ff-9dd6-ba2895d46811"},{"name":"Carrinhos Abandonados","item":[{"name":"Abandonado - Buscar Todos","id":"f9ea0cdc-5507-4877-ac2a-5d1e7cc77149","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"API_TOKEN"},{"key":"password","value":"API_KEY"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"warning":"This is a duplicate header and will be overridden by the Authorization header generated by Postman.","key":"Authorization","value":"Basic HASH_BASE64","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"atual\": \"1\"\n}"},"url":"https://www.sualoja.com.br/api/abandonados/buscar/todos","description":"<p>Busca todos registros com paginação de resultados.</p>\n<p>É possível filtrar os resultados da busca usando um ou mais campos do JSON abaixo.</p>\n","urlObject":{"path":["api","abandonados","buscar","todos"],"host":["https://www.sualoja.com.br"],"query":[],"variable":[]}},"response":[],"_postman_id":"f9ea0cdc-5507-4877-ac2a-5d1e7cc77149"},{"name":"Abandonado - Buscar por ID","id":"4f41d8dc-a66f-4408-8f3e-5693c9db76d3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"API_TOKEN"},{"key":"password","value":"API_KEY"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"warning":"This is a duplicate header and will be overridden by the Authorization header generated by Postman.","key":"Authorization","value":"Basic HASH_BASE64","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"id\": \"1\"\n}"},"url":"https://www.sualoja.com.br/api/abandonados/buscar/id","description":"<p>Busca registro pelo ID Braavo!</p>\n","urlObject":{"path":["api","abandonados","buscar","id"],"host":["https://www.sualoja.com.br"],"query":[],"variable":[]}},"response":[],"_postman_id":"4f41d8dc-a66f-4408-8f3e-5693c9db76d3"}],"id":"0475a580-8e62-4828-952e-c23ac234d999","_postman_id":"0475a580-8e62-4828-952e-c23ac234d999","description":""},{"name":"Categorias","item":[{"name":"Categoria - Adicionar","id":"88b11457-b68f-4181-a379-d6de2b47f8ce","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"API_TOKEN"},{"key":"password","value":"API_KEY"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"warning":"This is a duplicate header and will be overridden by the Authorization header generated by Postman.","key":"Authorization","value":"Basic HASH_BASE64","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"pai_id\": \"0\",\n    \"ativo\": \"1\",\n    \"data_1\": \"2010-01-01\",\n    \"data_2\": \"2050-12-31\",\n    \"nome\": \"Nome da Categoria 1\",\n    \"google_cate\": 0\n}"},"url":"https://www.sualoja.com.br/api/categorias/adicionar","urlObject":{"path":["api","categorias","adicionar"],"host":["https://www.sualoja.com.br"],"query":[],"variable":[]}},"response":[],"_postman_id":"88b11457-b68f-4181-a379-d6de2b47f8ce"},{"name":"Categoria - Editar","id":"c4775470-92ab-4792-bb30-c34cfdf7101b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"API_TOKEN"},{"key":"password","value":"API_KEY"}]},"isInherited":false},"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"warning":"This is a duplicate header and will be overridden by the Authorization header generated by Postman.","key":"Authorization","value":"Basic HASH_BASE64","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"id\": \"107\",\n    \"pai_id\": \"0\",\n    \"ativo\": \"1\",\n    \"nome\": \"Nome da Categoria 1 - Alterado\"\n}"},"url":"https://www.sualoja.com.br/api/categorias/editar","description":"<p>Edita registro pelo ID Braavo!</p>\n","urlObject":{"path":["api","categorias","editar"],"host":["https://www.sualoja.com.br"],"query":[],"variable":[]}},"response":[],"_postman_id":"c4775470-92ab-4792-bb30-c34cfdf7101b"},{"name":"Categoria - Apagar","id":"0dc1dc13-aab1-47c8-a06f-ba64f1d09104","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"API_TOKEN"},{"key":"password","value":"API_KEY"}]},"isInherited":false},"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"},{"warning":"This is a duplicate header and will be overridden by the Authorization header generated by Postman.","key":"Authorization","value":"Basic HASH_BASE64","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"id\": \"106\"\n}"},"url":"https://www.sualoja.com.br/api/categorias/apagar","description":"<p>Apaga registro usando ID Braavo!</p>\n","urlObject":{"path":["api","categorias","apagar"],"host":["https://www.sualoja.com.br"],"query":[],"variable":[]}},"response":[],"_postman_id":"0dc1dc13-aab1-47c8-a06f-ba64f1d09104"},{"name":"Categoria - Buscar Todos","id":"2a48a1e9-faad-4650-a399-cc86bc1c4914","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"API_TOKEN"},{"key":"password","value":"API_KEY"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"warning":"This is a duplicate header and will be overridden by the Authorization header generated by Postman.","key":"Authorization","value":"Basic HASH_BASE64","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"atual\": \"1\"\n}"},"url":"https://www.sualoja.com.br/api/categorias/buscar/todos","description":"<p>Busca todos registros com paginação de resultados.</p>\n<p>É possível filtrar os resultados da busca usando um ou mais campos do JSON abaixo.</p>\n","urlObject":{"path":["api","categorias","buscar","todos"],"host":["https://www.sualoja.com.br"],"query":[],"variable":[]}},"response":[],"_postman_id":"2a48a1e9-faad-4650-a399-cc86bc1c4914"},{"name":"Categoria - Buscar por ID","id":"b97dfbf6-d562-4049-900b-b7f637aeb0fb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"API_TOKEN"},{"key":"password","value":"API_KEY"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"warning":"This is a duplicate header and will be overridden by the Authorization header generated by Postman.","key":"Authorization","value":"Basic HASH_BASE64","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"id\": \"107\"\n}"},"url":"https://www.sualoja.com.br/api/categorias/buscar/id","description":"<p>Busca registro pelo ID Braavo!</p>\n","urlObject":{"path":["api","categorias","buscar","id"],"host":["https://www.sualoja.com.br"],"query":[],"variable":[]}},"response":[],"_postman_id":"b97dfbf6-d562-4049-900b-b7f637aeb0fb"},{"name":"Categoria - Buscar por Subitens","id":"3916a496-13b5-4f06-afec-fc6dfc39396d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"API_TOKEN"},{"key":"password","value":"API_KEY"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"warning":"This is a duplicate header and will be overridden by the Authorization header generated by Postman.","key":"Authorization","value":"Basic HASH_BASE64","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"id\": \"0\"\n}"},"url":"https://www.sualoja.com.br/api/categorias/buscar/pai","description":"<p>Busca subvariações pelo ID Braavo!</p>\n","urlObject":{"path":["api","categorias","buscar","pai"],"host":["https://www.sualoja.com.br"],"query":[],"variable":[]}},"response":[],"_postman_id":"3916a496-13b5-4f06-afec-fc6dfc39396d"}],"id":"c1f9729c-77bd-46b4-91ae-182c5ac38b1b","description":"<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Campo</th>\n<th>Tipo</th>\n<th>Padrão</th>\n<th>Obrigatório</th>\n<th>Valores</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>pai_id</td>\n<td>int</td>\n<td>0</td>\n<td>sim</td>\n<td></td>\n</tr>\n<tr>\n<td>ativo</td>\n<td>int</td>\n<td>0</td>\n<td>sim</td>\n<td>0 = Inativo  <br />1 = Ativo  <br />2 = Arquivado</td>\n</tr>\n<tr>\n<td>nome</td>\n<td>string</td>\n<td></td>\n<td>sim</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","event":[{"listen":"prerequest","script":{"id":"0607a6d7-a3c3-4e58-b412-693aba08e0eb","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"57584210-fa58-478f-b2e5-3c5a1a0171f8","type":"text/javascript","exec":[""]}}],"_postman_id":"c1f9729c-77bd-46b4-91ae-182c5ac38b1b"},{"name":"Marcas","item":[{"name":"Marca - Adicionar","id":"9e1c3fd6-6957-4929-8991-b0cb5cb1494f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"API_TOKEN"},{"key":"password","value":"API_KEY"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"warning":"This is a duplicate header and will be overridden by the Authorization header generated by Postman.","key":"Authorization","value":"Basic HASH_BASE64","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"pai_id\": \"0\",\n    \"ativo\": \"1\",\n    \"data_1\": \"2010-01-01\",\n    \"data_2\": \"2050-12-31\",\n    \"nome\": \"Nome da Marca 1\"\n}"},"url":"https://www.sualoja.com.br/api/marcas/adicionar","urlObject":{"path":["api","marcas","adicionar"],"host":["https://www.sualoja.com.br"],"query":[],"variable":[]}},"response":[],"_postman_id":"9e1c3fd6-6957-4929-8991-b0cb5cb1494f"},{"name":"Marca - Editar","id":"3b5c9aa1-ee11-414b-90d4-59235c848926","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"API_TOKEN"},{"key":"password","value":"API_KEY"}]},"isInherited":false},"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"warning":"This is a duplicate header and will be overridden by the Authorization header generated by Postman.","key":"Authorization","value":"Basic HASH_BASE64","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"id\": \"3\",\n    \"pai_id\": \"0\",\n    \"ativo\": \"1\",\n    \"data_1\": \"2010-01-01\",\n    \"data_2\": \"2050-12-31\",\n    \"nome\": \"Nome da Marca 1 - Alterado\"\n}"},"url":"https://www.sualoja.com.br/api/marcas/editar","description":"<p>Edita registro pelo ID Braavo!</p>\n","urlObject":{"path":["api","marcas","editar"],"host":["https://www.sualoja.com.br"],"query":[],"variable":[]}},"response":[],"_postman_id":"3b5c9aa1-ee11-414b-90d4-59235c848926"},{"name":"Marca - Apagar","id":"67156553-3fb8-4119-97c0-53840762c1ae","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"API_TOKEN"},{"key":"password","value":"API_KEY"}]},"isInherited":false},"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"},{"warning":"This is a duplicate header and will be overridden by the Authorization header generated by Postman.","key":"Authorization","value":"Basic HASH_BASE64","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"id\": \"2\"\n}"},"url":"https://www.sualoja.com.br/api/marcas/apagar","description":"<p>Apaga registro usando ID Braavo!</p>\n","urlObject":{"path":["api","marcas","apagar"],"host":["https://www.sualoja.com.br"],"query":[],"variable":[]}},"response":[],"_postman_id":"67156553-3fb8-4119-97c0-53840762c1ae"},{"name":"Marca - Buscar Todos","id":"1e5dcda9-4244-4fbd-a568-b5becf5ea75b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"API_TOKEN"},{"key":"password","value":"API_KEY"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"warning":"This is a duplicate header and will be overridden by the Authorization header generated by Postman.","key":"Authorization","value":"Basic HASH_BASE64","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"atual\": \"1\"\n}"},"url":"https://www.sualoja.com.br/api/marcas/buscar/todos","description":"<p>Busca todos registros com paginação de resultados.</p>\n<p>É possível filtrar os resultados da busca usando um ou mais campos do JSON abaixo.</p>\n","urlObject":{"path":["api","marcas","buscar","todos"],"host":["https://www.sualoja.com.br"],"query":[],"variable":[]}},"response":[],"_postman_id":"1e5dcda9-4244-4fbd-a568-b5becf5ea75b"},{"name":"Marca - Buscar por ID","id":"af269ce4-2146-4125-a7f0-7002db9ed65b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"API_TOKEN"},{"key":"password","value":"API_KEY"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"warning":"This is a duplicate header and will be overridden by the Authorization header generated by Postman.","key":"Authorization","value":"Basic HASH_BASE64","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"id\": \"1\"\n}"},"url":"https://www.sualoja.com.br/api/marcas/buscar/id","description":"<p>Busca registro pelo ID Braavo!</p>\n","urlObject":{"path":["api","marcas","buscar","id"],"host":["https://www.sualoja.com.br"],"query":[],"variable":[]}},"response":[],"_postman_id":"af269ce4-2146-4125-a7f0-7002db9ed65b"}],"id":"f196080b-e7c4-40c6-8cae-f3085e418a8f","description":"<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Campo</th>\n<th>Tipo</th>\n<th>Padrão</th>\n<th>Obrigatório</th>\n<th>Valores</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>ativo</td>\n<td>int</td>\n<td>0</td>\n<td>sim</td>\n<td>0 = Inativo  <br />1 = Ativo  <br />2 = Arquivado</td>\n</tr>\n<tr>\n<td>data_1</td>\n<td>date</td>\n<td>2010-01-01</td>\n<td>sim</td>\n<td></td>\n</tr>\n<tr>\n<td>data_2</td>\n<td>date</td>\n<td>2050-12-31</td>\n<td>sim</td>\n<td></td>\n</tr>\n<tr>\n<td>nome</td>\n<td>string</td>\n<td></td>\n<td>sim</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","event":[{"listen":"prerequest","script":{"id":"e4827718-91f1-4ec2-bf88-c9b71804be94","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"fde682bb-2bef-4460-b080-5813d237a09f","type":"text/javascript","exec":[""]}}],"_postman_id":"f196080b-e7c4-40c6-8cae-f3085e418a8f"},{"name":"Fornecedores","item":[{"name":"Fornecedor - Adicionar","id":"2ae05d59-fe9c-4da4-b5d5-dc9d74c04718","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"API_TOKEN"},{"key":"password","value":"API_KEY"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"warning":"This is a duplicate header and will be overridden by the Authorization header generated by Postman.","key":"Authorization","value":"Basic HASH_BASE64","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"pai_id\": \"0\",\n    \"ativo\": \"1\",\n    \"nome\": \"Nome do Fornecedor 1\"\n}"},"url":"https://www.sualoja.com.br/api/fornecedores/adicionar","urlObject":{"path":["api","fornecedores","adicionar"],"host":["https://www.sualoja.com.br"],"query":[],"variable":[]}},"response":[],"_postman_id":"2ae05d59-fe9c-4da4-b5d5-dc9d74c04718"},{"name":"Fornecedor - Editar","id":"5f7dce95-ccb7-40cb-b735-f6e287ee1d56","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"API_TOKEN"},{"key":"password","value":"API_KEY"}]},"isInherited":false},"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"warning":"This is a duplicate header and will be overridden by the Authorization header generated by Postman.","key":"Authorization","value":"Basic HASH_BASE64","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"id\": \"2\",\n    \"pai_id\": \"0\",\n    \"ativo\": \"1\",\n    \"nome\": \"Nome do Fornecedor 1 - Alterado\"\n}"},"url":"https://www.sualoja.com.br/api/fornecedores/editar","description":"<p>Edita registro pelo ID Braavo!</p>\n","urlObject":{"path":["api","fornecedores","editar"],"host":["https://www.sualoja.com.br"],"query":[],"variable":[]}},"response":[],"_postman_id":"5f7dce95-ccb7-40cb-b735-f6e287ee1d56"},{"name":"Fornecedor - Apagar","id":"7daf26c4-bb48-43ab-8b09-abc4499b8a8d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"API_TOKEN"},{"key":"password","value":"API_KEY"}]},"isInherited":false},"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"},{"warning":"This is a duplicate header and will be overridden by the Authorization header generated by Postman.","key":"Authorization","value":"Basic HASH_BASE64","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"id\": \"1\"\n}"},"url":"https://www.sualoja.com.br/api/fornecedores/apagar","description":"<p>Apaga registro usando ID Braavo!</p>\n","urlObject":{"path":["api","fornecedores","apagar"],"host":["https://www.sualoja.com.br"],"query":[],"variable":[]}},"response":[],"_postman_id":"7daf26c4-bb48-43ab-8b09-abc4499b8a8d"},{"name":"Fornecedor - Buscar Todos","id":"79763e26-61cc-48c9-b394-301639bcd4c8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"API_TOKEN"},{"key":"password","value":"API_KEY"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"warning":"This is a duplicate header and will be overridden by the Authorization header generated by Postman.","key":"Authorization","value":"Basic HASH_BASE64","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"atual\": \"1\"\n}"},"url":"https://www.sualoja.com.br/api/fornecedores/buscar/todos","description":"<p>Busca todos registros com paginação de resultados.</p>\n<p>É possível filtrar os resultados da busca usando um ou mais campos do JSON abaixo.</p>\n","urlObject":{"path":["api","fornecedores","buscar","todos"],"host":["https://www.sualoja.com.br"],"query":[],"variable":[]}},"response":[],"_postman_id":"79763e26-61cc-48c9-b394-301639bcd4c8"},{"name":"Fornecedor - Buscar por ID","id":"396303ef-23d7-4ef9-a587-d3745f2bb37d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"API_TOKEN"},{"key":"password","value":"API_KEY"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"warning":"This is a duplicate header and will be overridden by the Authorization header generated by Postman.","key":"Authorization","value":"Basic HASH_BASE64","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"id\": \"1\"\n}"},"url":"https://www.sualoja.com.br/api/fornecedores/buscar/id","description":"<p>Busca registro pelo ID Braavo!</p>\n","urlObject":{"path":["api","fornecedores","buscar","id"],"host":["https://www.sualoja.com.br"],"query":[],"variable":[]}},"response":[],"_postman_id":"396303ef-23d7-4ef9-a587-d3745f2bb37d"}],"id":"3888e9dc-7c47-488f-95ab-bf7136417f73","description":"<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Campo</th>\n<th>Tipo</th>\n<th>Padrão</th>\n<th>Obrigatório</th>\n<th>Valores</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>ativo</td>\n<td>int</td>\n<td>0</td>\n<td>sim</td>\n<td>0 = Inativo  <br />1 = Ativo  <br />2 = Arquivado</td>\n</tr>\n<tr>\n<td>nome</td>\n<td>string</td>\n<td></td>\n<td>sim</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","event":[{"listen":"prerequest","script":{"id":"693c4995-943d-4e9e-8b41-ddb51e07c3fb","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"fc1735ed-bea5-4adf-86f5-0f6e707e698f","type":"text/javascript","exec":[""]}}],"_postman_id":"3888e9dc-7c47-488f-95ab-bf7136417f73"},{"name":"Tabela de Medidas","item":[{"name":"Tabela - Adicionar","id":"22c9bad9-ac10-4f84-914b-4f58db8d50d5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"API_TOKEN"},{"key":"password","value":"API_KEY"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"warning":"This is a duplicate header and will be overridden by the Authorization header generated by Postman.","key":"Authorization","value":"Basic HASH_BASE64","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"ativo\": \"1\",\n    \"nome\": \"Nome do Tabela de Medidas 1\"\n}"},"url":"https://www.sualoja.com.br/api/tabelas/adicionar","urlObject":{"path":["api","tabelas","adicionar"],"host":["https://www.sualoja.com.br"],"query":[],"variable":[]}},"response":[],"_postman_id":"22c9bad9-ac10-4f84-914b-4f58db8d50d5"},{"name":"Tabela - Editar","id":"69fc7271-377e-4d85-8c80-d4dd5844a154","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"API_TOKEN"},{"key":"password","value":"API_KEY"}]},"isInherited":false},"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"warning":"This is a duplicate header and will be overridden by the Authorization header generated by Postman.","key":"Authorization","value":"Basic HASH_BASE64","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"id\": \"14\",\n    \"ativo\": \"1\",\n    \"nome\": \"Nome do Tabela de Medidas 1 - Alterado\"\n}"},"url":"https://www.sualoja.com.br/api/tabelas/editar","description":"<p>Edita registro pelo ID Braavo!</p>\n","urlObject":{"path":["api","tabelas","editar"],"host":["https://www.sualoja.com.br"],"query":[],"variable":[]}},"response":[],"_postman_id":"69fc7271-377e-4d85-8c80-d4dd5844a154"},{"name":"Tabela - Apagar","id":"7746df6a-a959-4b91-aed4-2ea8719e551e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"API_TOKEN"},{"key":"password","value":"API_KEY"}]},"isInherited":false},"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"},{"warning":"This is a duplicate header and will be overridden by the Authorization header generated by Postman.","key":"Authorization","value":"Basic HASH_BASE64","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"id\": \"1\"\n}"},"url":"https://www.sualoja.com.br/api/tabelas/apagar","description":"<p>Apaga registro usando ID Braavo!</p>\n","urlObject":{"path":["api","tabelas","apagar"],"host":["https://www.sualoja.com.br"],"query":[],"variable":[]}},"response":[],"_postman_id":"7746df6a-a959-4b91-aed4-2ea8719e551e"},{"name":"Tabela - Buscar Todos","id":"f68ea31e-c400-4383-a62f-036c1c3a236e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"API_TOKEN"},{"key":"password","value":"API_KEY"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"warning":"This is a duplicate header and will be overridden by the Authorization header generated by Postman.","key":"Authorization","value":"Basic HASH_BASE64","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"atual\": \"1\"\n}"},"url":"https://www.sualoja.com.br/api/tabelas/buscar/todos","description":"<p>Busca todos registros com paginação de resultados.</p>\n<p>É possível filtrar os resultados da busca usando um ou mais campos do JSON abaixo.</p>\n","urlObject":{"path":["api","tabelas","buscar","todos"],"host":["https://www.sualoja.com.br"],"query":[],"variable":[]}},"response":[],"_postman_id":"f68ea31e-c400-4383-a62f-036c1c3a236e"},{"name":"Tabela - Buscar por ID","id":"a7a8d374-a3e4-48c4-bdb3-34799da0e91d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"API_TOKEN"},{"key":"password","value":"API_KEY"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"warning":"This is a duplicate header and will be overridden by the Authorization header generated by Postman.","key":"Authorization","value":"Basic HASH_BASE64","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"id\": \"14\"\n}"},"url":"https://www.sualoja.com.br/api/tabelas/buscar/id","description":"<p>Busca registro pelo ID Braavo!</p>\n","urlObject":{"path":["api","tabelas","buscar","id"],"host":["https://www.sualoja.com.br"],"query":[],"variable":[]}},"response":[],"_postman_id":"a7a8d374-a3e4-48c4-bdb3-34799da0e91d"}],"id":"8c85435c-a0da-48b6-9f12-1c1656749124","description":"<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Campo</th>\n<th>Tipo</th>\n<th>Padrão</th>\n<th>Obrigatório</th>\n<th>Valores</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>ativo</td>\n<td>int</td>\n<td>0</td>\n<td>sim</td>\n<td>0 = Inativo  <br />1 = Ativo  <br />2 = Arquivado</td>\n</tr>\n<tr>\n<td>nome</td>\n<td>string</td>\n<td></td>\n<td>sim</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","event":[{"listen":"prerequest","script":{"id":"e92ff89e-25e6-463b-8d71-e4c7a5ff4555","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"62c2e75a-5d80-4db3-aa50-12a52cd49db0","type":"text/javascript","exec":[""]}}],"_postman_id":"8c85435c-a0da-48b6-9f12-1c1656749124"},{"name":"Variações","item":[{"name":"Variação - Adicionar","id":"233f12d2-907c-4a48-a81b-383130a2af7b","request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"API_TOKEN"},{"key":"password","value":"API_KEY"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"warning":"This is a duplicate header and will be overridden by the Authorization header generated by Postman.","key":"Authorization","value":"Basic HASH_BASE64","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"pai_id\": \"0\",\n    \"ativo\": \"1\",\n    \"nome\": \"Nome da Variacao\"\n}"},"url":"https://www.sualoja.com.br/api/variacoes/adicionar","urlObject":{"path":["api","variacoes","adicionar"],"host":["https://www.sualoja.com.br"],"query":[],"variable":[]}},"response":[],"_postman_id":"233f12d2-907c-4a48-a81b-383130a2af7b"},{"name":"Variação - Editar","id":"aa9ab7bd-2aa9-4d9a-9edf-60f99b293e7e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"API_TOKEN"},{"key":"password","value":"API_KEY"}]},"isInherited":false},"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"warning":"This is a duplicate header and will be overridden by the Authorization header generated by Postman.","key":"Authorization","value":"Basic HASH_BASE64","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"id\": \"1\",\n    \"pai_id\": \"0\",\n    \"ativo\": \"1\",\n    \"nome\": \"Nome da Variacao Alterado\"\n}"},"url":"https://www.sualoja.com.br/api/variacoes/editar","description":"<p>Edita registro pelo ID Braavo!</p>\n","urlObject":{"path":["api","variacoes","editar"],"host":["https://www.sualoja.com.br"],"query":[],"variable":[]}},"response":[],"_postman_id":"aa9ab7bd-2aa9-4d9a-9edf-60f99b293e7e"},{"name":"Variação - Apagar","id":"7687f78d-254b-4eee-958c-f44b16dbd7a6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"API_TOKEN"},{"key":"password","value":"API_KEY"}]},"isInherited":false},"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"},{"warning":"This is a duplicate header and will be overridden by the Authorization header generated by Postman.","key":"Authorization","value":"Basic HASH_BASE64","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"id\": \"1\"\n}"},"url":"https://www.sualoja.com.br/api/variacoes/apagar","description":"<p>Apaga registro usando ID Braavo!</p>\n","urlObject":{"path":["api","variacoes","apagar"],"host":["https://www.sualoja.com.br"],"query":[],"variable":[]}},"response":[],"_postman_id":"7687f78d-254b-4eee-958c-f44b16dbd7a6"},{"name":"Variação - Buscar Todos","id":"23496536-7f7e-4f68-ae6a-4419a3ccdb35","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"API_TOKEN"},{"key":"password","value":"API_KEY"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"warning":"This is a duplicate header and will be overridden by the Authorization header generated by Postman.","key":"Authorization","value":"Basic HASH_BASE64","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"atual\": \"1\",\n    \"data_alterado\": \"2020-10-22\",\n    \"data_criado\": \"2020-08-28\"\n}"},"url":"https://www.sualoja.com.br/api/variacoes/buscar/todos","description":"<p>Busca todos registros com paginação de resultados.</p>\n<p>É possível filtrar os resultados da busca usando um ou mais campos do JSON abaixo.</p>\n","urlObject":{"path":["api","variacoes","buscar","todos"],"host":["https://www.sualoja.com.br"],"query":[],"variable":[]}},"response":[],"_postman_id":"23496536-7f7e-4f68-ae6a-4419a3ccdb35"},{"name":"Variação - Buscar por ID","id":"74b9c24e-3185-4920-a1e1-9604dd062d86","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"API_TOKEN"},{"key":"password","value":"API_KEY"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"warning":"This is a duplicate header and will be overridden by the Authorization header generated by Postman.","key":"Authorization","value":"Basic HASH_BASE64","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"id\": \"1\"\n}"},"url":"https://www.sualoja.com.br/api/variacoes/buscar/id","description":"<p>Busca registro pelo ID Braavo!</p>\n","urlObject":{"path":["api","variacoes","buscar","id"],"host":["https://www.sualoja.com.br"],"query":[],"variable":[]}},"response":[],"_postman_id":"74b9c24e-3185-4920-a1e1-9604dd062d86"},{"name":"Variação - Buscar por Subitens","id":"308af26e-76d7-4e12-a371-6ba17ed29a63","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"API_TOKEN"},{"key":"password","value":"API_KEY"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"warning":"This is a duplicate header and will be overridden by the Authorization header generated by Postman.","key":"Authorization","value":"Basic HASH_BASE64","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"id\": \"0\"\n}"},"url":"https://www.sualoja.com.br/api/variacoes/buscar/pai","description":"<p>Busca subvariações pelo ID Braavo!</p>\n","urlObject":{"path":["api","variacoes","buscar","pai"],"host":["https://www.sualoja.com.br"],"query":[],"variable":[]}},"response":[],"_postman_id":"308af26e-76d7-4e12-a371-6ba17ed29a63"}],"id":"2007f14f-d5a1-4343-9fce-2cb4c321d3dd","description":"<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Campo</th>\n<th>Tipo</th>\n<th>Padrão</th>\n<th>Obrigatório</th>\n<th>Valores</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>pai_id</td>\n<td>int</td>\n<td>0</td>\n<td>sim</td>\n<td></td>\n</tr>\n<tr>\n<td>ativo</td>\n<td>int</td>\n<td>0</td>\n<td>sim</td>\n<td>0 = Inativo  <br />1 = Ativo  <br />2 = Arquivado</td>\n</tr>\n<tr>\n<td>nome</td>\n<td>string</td>\n<td></td>\n<td>sim</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","event":[{"listen":"prerequest","script":{"id":"0607a6d7-a3c3-4e58-b412-693aba08e0eb","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"57584210-fa58-478f-b2e5-3c5a1a0171f8","type":"text/javascript","exec":[""]}}],"_postman_id":"2007f14f-d5a1-4343-9fce-2cb4c321d3dd"},{"name":"Produtos","item":[{"name":"Produto - Adicionar","id":"f48911dc-43f0-4394-b0f0-6af6ffa64250","request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"API_TOKEN"},{"key":"password","value":"API_KEY"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"warning":"This is a duplicate header and will be overridden by the Authorization header generated by Postman.","key":"Authorization","value":"Basic HASH_BASE64","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"categoria_id\": \"1\",\n    \"fornecedor_id\": \"1\",\n    \"marca_id\": \"1\",\n    \"tabela_id\": \"1\",\n    \"ativo\": \"1\",\n    \"nome\": \"Nome do Produto\",\n    \"ref\": \"REF1\",\n    \"ncm\": \"NCM1\",\n    \"estrelas\": \"5\",\n    \"deduzir\": \"1\",\n    \"esgotado\": \"1\",\n    \"prazo\": \"0\",\n    \"profundidade\": \"0.0\",\n    \"largura\": \"0.0\",\n    \"altura\": \"0.0\",\n    \"sexo\": \"U\",\n    \"publico\": \"A\",\n    \"descricao\": \"Lorem\",\n    \"youtube\": \"https://www.youtube.com.br/w/123456\"\n}"},"url":"https://www.sualoja.com.br/api/produtos/adicionar","description":"<p>Resposta com o ID Braavo!</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\"ok\": {\"id\": \"18\", \"mensagem\": \"Adicionado\"}}\n</code></pre>","urlObject":{"path":["api","produtos","adicionar"],"host":["https://www.sualoja.com.br"],"query":[],"variable":[]}},"response":[],"_postman_id":"f48911dc-43f0-4394-b0f0-6af6ffa64250"},{"name":"Produto - Editar","id":"958bda73-672d-4d03-92a6-36d98c389432","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"API_TOKEN"},{"key":"password","value":"API_KEY"}]},"isInherited":false},"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"warning":"This is a duplicate header and will be overridden by the Authorization header generated by Postman.","key":"Authorization","value":"Basic HASH_BASE64","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"id\": \"1\",\n\t\"categoria_id\": \"1\",\n    \"fornecedor_id\": \"1\",\n    \"marca_id\": \"1\",\n    \"tabela_id\": \"1\",\n    \"ativo\": \"1\",\n    \"nome\": \"Nome do Produto Alterado\",\n    \"ref\": \"REF1\",\n    \"ncm\": \"NCM1\",\n    \"estrelas\": \"5\",\n    \"deduzir\": \"1\",\n    \"esgotado\": \"1\",\n    \"prazo\": \"0\",\n    \"profundidade\": \"0.0\",\n    \"largura\": \"0.0\",\n    \"altura\": \"0.0\",\n    \"sexo\": \"U\",\n    \"publico\": \"A\",\n    \"descricao\": \"Lorem\",\n    \"youtube\": \"https://www.youtube.com.br/w/123456\"\n}"},"url":"https://www.sualoja.com.br/api/produtos/editar","description":"<p>Edita registro pelo ID Braavo!</p>\n","urlObject":{"path":["api","produtos","editar"],"host":["https://www.sualoja.com.br"],"query":[],"variable":[]}},"response":[],"_postman_id":"958bda73-672d-4d03-92a6-36d98c389432"},{"name":"Produto - Apagar","id":"f01cb6dd-368c-4990-a56d-084940b8d256","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"API_TOKEN"},{"key":"password","value":"API_KEY"}]},"isInherited":false},"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"},{"warning":"This is a duplicate header and will be overridden by the Authorization header generated by Postman.","key":"Authorization","value":"Basic HASH_BASE64","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"id\": \"1\"\n}"},"url":"https://www.sualoja.com.br/api/produtos/apagar","description":"<p>Apaga registro usando ID Braavo!</p>\n","urlObject":{"path":["api","produtos","apagar"],"host":["https://www.sualoja.com.br"],"query":[],"variable":[]}},"response":[],"_postman_id":"f01cb6dd-368c-4990-a56d-084940b8d256"},{"name":"Produto - Buscar Todos","id":"3c3fe8a5-a38e-41ff-89e8-e29a803ab33f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"API_TOKEN"},{"key":"password","value":"API_KEY"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"warning":"This is a duplicate header and will be overridden by the Authorization header generated by Postman.","key":"Authorization","value":"Basic HASH_BASE64","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"atual\": \"1\",\n    \"ref\": \"abc123\",\n    \"data_alterado\": \"2020-10-22\",\n    \"data_criado\": \"2020-08-28\"\n}"},"url":"https://www.sualoja.com.br/api/produtos/buscar/todos","description":"<p>Busca todos registros com paginação de resultados.</p>\n<p>É possível filtrar os resultados da busca usando um ou mais campos do JSON abaixo.</p>\n","urlObject":{"path":["api","produtos","buscar","todos"],"host":["https://www.sualoja.com.br"],"query":[],"variable":[]}},"response":[],"_postman_id":"3c3fe8a5-a38e-41ff-89e8-e29a803ab33f"},{"name":"Produto - Buscar por ID","id":"b6189190-fcc3-4292-bbce-af74082be7c9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"API_TOKEN"},{"key":"password","value":"API_KEY"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"warning":"This is a duplicate header and will be overridden by the Authorization header generated by Postman.","key":"Authorization","value":"Basic HASH_BASE64","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"id\": \"1\"\n}"},"url":"https://www.sualoja.com.br/api/produtos/buscar/id","description":"<p>Busca registro pelo ID Braavo!</p>\n","urlObject":{"path":["api","produtos","buscar","id"],"host":["https://www.sualoja.com.br"],"query":[],"variable":[]}},"response":[],"_postman_id":"b6189190-fcc3-4292-bbce-af74082be7c9"},{"name":"Produto - Buscar por Referência","id":"8388616a-666d-4dea-8e65-4cf3a430c283","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"API_TOKEN"},{"key":"password","value":"API_KEY"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"warning":"This is a duplicate header and will be overridden by the Authorization header generated by Postman.","key":"Authorization","value":"Basic HASH_BASE64","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"ref\": \"abc123\"\n}"},"url":"https://www.sualoja.com.br/api/produtos/buscar/ref","description":"<p>Busca registro pela referência</p>\n","urlObject":{"path":["api","produtos","buscar","ref"],"host":["https://www.sualoja.com.br"],"query":[],"variable":[]}},"response":[],"_postman_id":"8388616a-666d-4dea-8e65-4cf3a430c283"}],"id":"51608613-479e-4658-8662-7e9ba95e2a43","description":"<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Campo</th>\n<th>Tipo</th>\n<th>Padrão</th>\n<th>Obrigatório</th>\n<th>Valores</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>fornecedor_id</td>\n<td>int</td>\n<td>0</td>\n<td>não</td>\n<td></td>\n</tr>\n<tr>\n<td>marca_id</td>\n<td>int</td>\n<td>0</td>\n<td>não</td>\n<td></td>\n</tr>\n<tr>\n<td>tabela_id</td>\n<td>int</td>\n<td>0</td>\n<td>não</td>\n<td></td>\n</tr>\n<tr>\n<td>ativo</td>\n<td>int</td>\n<td>0</td>\n<td>não</td>\n<td>0 = Inativo  <br />1 = Ativo  <br />2 = Arquivado</td>\n</tr>\n<tr>\n<td>nome</td>\n<td>string</td>\n<td></td>\n<td>sim</td>\n<td></td>\n</tr>\n<tr>\n<td>ref</td>\n<td>string</td>\n<td></td>\n<td>sim</td>\n<td></td>\n</tr>\n<tr>\n<td>ncm</td>\n<td>string</td>\n<td></td>\n<td>sim</td>\n<td></td>\n</tr>\n<tr>\n<td>estrelas</td>\n<td>int</td>\n<td>0</td>\n<td>sim</td>\n<td>0-5</td>\n</tr>\n<tr>\n<td>deduzir</td>\n<td>int</td>\n<td>1</td>\n<td>sim</td>\n<td>0 = Não  <br />1 = Sim</td>\n</tr>\n<tr>\n<td>esgotado</td>\n<td>int</td>\n<td>1</td>\n<td>sim</td>\n<td>0 = Não  <br />1 = Sim</td>\n</tr>\n<tr>\n<td>prazo</td>\n<td>int</td>\n<td>0</td>\n<td>sim</td>\n<td>0-9</td>\n</tr>\n<tr>\n<td>profundidade</td>\n<td>float</td>\n<td>0.0</td>\n<td>não</td>\n<td></td>\n</tr>\n<tr>\n<td>largura</td>\n<td>float</td>\n<td>0.0</td>\n<td>não</td>\n<td></td>\n</tr>\n<tr>\n<td>altura</td>\n<td>float</td>\n<td>0.00</td>\n<td>não</td>\n<td></td>\n</tr>\n<tr>\n<td>sexo</td>\n<td>string</td>\n<td>M</td>\n<td>não</td>\n<td>M = Masculino  <br />F = Feminino  <br />U = Unisex</td>\n</tr>\n<tr>\n<td>publico</td>\n<td>string</td>\n<td>A</td>\n<td>não</td>\n<td>A = Adulto  <br />I = Infantil</td>\n</tr>\n<tr>\n<td>descricao</td>\n<td>string</td>\n<td></td>\n<td>não</td>\n<td></td>\n</tr>\n<tr>\n<td>youtube</td>\n<td>string</td>\n<td></td>\n<td>não</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","event":[{"listen":"prerequest","script":{"id":"6ab7036e-3294-4837-9dad-789caefd91c1","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"aa1ee5a9-894b-47c7-8752-45e28a3a0dff","type":"text/javascript","exec":[""]}}],"_postman_id":"51608613-479e-4658-8662-7e9ba95e2a43"},{"name":"Produtos - SKUs","item":[{"name":"SKU - Adicionar","id":"41199c4c-bb69-47fd-8d2d-b7c566ee1ad0","request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"API_TOKEN"},{"key":"password","value":"API_KEY"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"warning":"This is a duplicate header and will be overridden by the Authorization header generated by Postman.","key":"Authorization","value":"Basic HASH_BASE64","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"produto_id\": \"1\",\n    \"var1_id\": \"44\",\n    \"var2_id\": \"4\",\n    \"ativo\": \"1\",\n    \"ref\": \"REF1\",\n    \"gtin\": \"GTIN1\",\n    \"mpn\": \"MPN1\",\n    \"peso\": \"0.300\",\n    \"preco_custo\": \"10.00\",\n    \"preco_original\": \"120.00\",\n    \"preco_venda\": \"90.00\",\n    \"movimentacao\": \"entrada\",\n    \"lancamento\": \"1\"\n}"},"url":"https://www.sualoja.com.br/api/skus/adicionar","urlObject":{"path":["api","skus","adicionar"],"host":["https://www.sualoja.com.br"],"query":[],"variable":[]}},"response":[],"_postman_id":"41199c4c-bb69-47fd-8d2d-b7c566ee1ad0"},{"name":"SKU - Editar","id":"564aa25b-dee9-4df7-83b9-494c52ad531d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"API_TOKEN"},{"key":"password","value":"API_KEY"}]},"isInherited":false},"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"warning":"This is a duplicate header and will be overridden by the Authorization header generated by Postman.","key":"Authorization","value":"Basic HASH_BASE64","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"id\": \"1\",\n    \"produto_id\": \"1\",\n    \"var1_id\": \"44\",\n    \"var2_id\": \"4\",\n    \"ativo\": \"1\",\n    \"ref\": \"REF1\",\n    \"gtin\": \"GTIN1\",\n    \"mpn\": \"MPN1\",\n    \"peso\": \"0.300\",\n    \"preco_custo\": \"10.00\",\n    \"preco_original\": \"120.00\",\n    \"preco_venda\": \"90.00\",\n    \"movimentacao\": \"entrada\",\n    \"lancamento\": \"1\"\n}"},"url":"https://www.sualoja.com.br/api/skus/editar","description":"<p>Edita registro pelo ID Braavo!</p>\n","urlObject":{"path":["api","skus","editar"],"host":["https://www.sualoja.com.br"],"query":[],"variable":[]}},"response":[],"_postman_id":"564aa25b-dee9-4df7-83b9-494c52ad531d"},{"name":"SKU - Apagar","id":"7da7dbad-063a-4e3d-9340-51dadd6a35fb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"API_TOKEN"},{"key":"password","value":"API_KEY"}]},"isInherited":false},"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"},{"warning":"This is a duplicate header and will be overridden by the Authorization header generated by Postman.","key":"Authorization","value":"Basic HASH_BASE64","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"id\": \"1\"\n}"},"url":"https://www.sualoja.com.br/api/skus/apagar","description":"<p>Apaga registro usando ID Braavo!</p>\n","urlObject":{"path":["api","skus","apagar"],"host":["https://www.sualoja.com.br"],"query":[],"variable":[]}},"response":[],"_postman_id":"7da7dbad-063a-4e3d-9340-51dadd6a35fb"},{"name":"SKU - Buscar Todos","id":"d2310013-8f30-453f-8692-f117916bd2cf","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"API_TOKEN"},{"key":"password","value":"API_KEY"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"warning":"This is a duplicate header and will be overridden by the Authorization header generated by Postman.","key":"Authorization","value":"Basic HASH_BASE64","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"atual\": 1,\n    \"data_criado\": \"2018-08-03\"\n}"},"url":"https://www.sualoja.com.br/api/skus/buscar/todos","description":"<p>Busca todos registros com paginação de resultados.</p>\n<p>É possível filtrar os resultados da busca usando um ou mais campos do JSON abaixo.</p>\n","urlObject":{"path":["api","skus","buscar","todos"],"host":["https://www.sualoja.com.br"],"query":[],"variable":[]}},"response":[],"_postman_id":"d2310013-8f30-453f-8692-f117916bd2cf"},{"name":"SKU - Buscar por ID","id":"976a42fc-2d1f-454b-bfc4-c2213a62c288","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"API_TOKEN"},{"key":"password","value":"API_KEY"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"warning":"This is a duplicate header and will be overridden by the Authorization header generated by Postman.","key":"Authorization","value":"Basic HASH_BASE64","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"id\": \"13\"\n}"},"url":"https://www.sualoja.com.br/api/skus/buscar/id","description":"<p>Busca registro pelo ID Braavo!</p>\n","urlObject":{"path":["api","skus","buscar","id"],"host":["https://www.sualoja.com.br"],"query":[],"variable":[]}},"response":[],"_postman_id":"976a42fc-2d1f-454b-bfc4-c2213a62c288"},{"name":"SKU - Buscar por REF","id":"d34ff5ce-71ad-49b1-9e2c-eaf8052a2e5e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"API_TOKEN"},{"key":"password","value":"API_KEY"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"warning":"This is a duplicate header and will be overridden by the Authorization header generated by Postman.","key":"Authorization","value":"Basic HASH_BASE64","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"ref\": \"abc123\"\n}"},"url":"https://www.sualoja.com.br/api/skus/buscar/ref","description":"<p>Busca registro pela referência do SKU</p>\n","urlObject":{"path":["api","skus","buscar","ref"],"host":["https://www.sualoja.com.br"],"query":[],"variable":[]}},"response":[],"_postman_id":"d34ff5ce-71ad-49b1-9e2c-eaf8052a2e5e"}],"id":"a0b6a3eb-8c6d-440c-9462-a823dac4a61d","description":"<p>Quando o \"Preço Original\" é definido com um valor superior ao \"Preço de Venda\" a plataforma destaca essa diferença para o cliente, mostrando o \"Preço De\" ao lado do \"Preço Por.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Campo</th>\n<th>Tipo</th>\n<th>Padrão</th>\n<th>Obrigatório</th>\n<th>Valores</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>int</td>\n<td></td>\n<td>sim</td>\n<td></td>\n</tr>\n<tr>\n<td>produto_id</td>\n<td>int</td>\n<td></td>\n<td>sim</td>\n<td></td>\n</tr>\n<tr>\n<td>var1_id</td>\n<td>int</td>\n<td></td>\n<td>sim</td>\n<td></td>\n</tr>\n<tr>\n<td>var2_id</td>\n<td>int</td>\n<td></td>\n<td>sim</td>\n<td></td>\n</tr>\n<tr>\n<td>ativo</td>\n<td>int</td>\n<td></td>\n<td>sim</td>\n<td>1-2</td>\n</tr>\n<tr>\n<td>ref</td>\n<td>string</td>\n<td></td>\n<td>sim</td>\n<td></td>\n</tr>\n<tr>\n<td>gtin</td>\n<td>string</td>\n<td></td>\n<td>sim</td>\n<td></td>\n</tr>\n<tr>\n<td>mpn</td>\n<td>string</td>\n<td></td>\n<td>sim</td>\n<td></td>\n</tr>\n<tr>\n<td>peso</td>\n<td>float</td>\n<td></td>\n<td>sim</td>\n<td></td>\n</tr>\n<tr>\n<td>preco_custo</td>\n<td>float</td>\n<td></td>\n<td>não</td>\n<td></td>\n</tr>\n<tr>\n<td>preco_original</td>\n<td>float</td>\n<td></td>\n<td>não</td>\n<td></td>\n</tr>\n<tr>\n<td>preco_venda</td>\n<td>float</td>\n<td></td>\n<td>sim</td>\n<td></td>\n</tr>\n<tr>\n<td>movimentacao</td>\n<td>string</td>\n<td></td>\n<td>sim</td>\n<td>entrada  <br />saida  <br />balanco</td>\n</tr>\n<tr>\n<td>lancamento</td>\n<td>int</td>\n<td>0</td>\n<td>sim</td>\n<td>0-9</td>\n</tr>\n</tbody>\n</table>\n</div>","event":[{"listen":"prerequest","script":{"id":"993b8a34-3fc3-4eff-af67-07e5be5db723","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"af36fe87-5e8a-4935-a145-2d90305e0fc7","type":"text/javascript","exec":[""]}}],"_postman_id":"a0b6a3eb-8c6d-440c-9462-a823dac4a61d"},{"name":"Produtos - Descontos","item":[{"name":"ProdutoDesconto - Editar","id":"41990fa5-6997-4d14-af65-974d75eecf7e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"API_TOKEN"},{"key":"password","value":"API_KEY"}]},"isInherited":false},"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"warning":"This is a duplicate header and will be overridden by the Authorization header generated by Postman.","key":"Authorization","value":"Basic HASH_BASE64","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"produto_id\": \"1\",\n    \"desconto_tipo\": \"P\",\n    \"desconto_valor\": \"10.00\",\n    \"data_desconto_1\": \"2010-01-01\",\n    \"data_desconto_2\": \"2050-12-31\"\n}"},"url":"https://www.sualoja.com.br/api/produtos_descontos/editar","description":"<p>Edita registro pelo ID Braavo!</p>\n","urlObject":{"path":["api","produtos_descontos","editar"],"host":["https://www.sualoja.com.br"],"query":[],"variable":[]}},"response":[],"_postman_id":"41990fa5-6997-4d14-af65-974d75eecf7e"},{"name":"ProdutoDesconto - Buscar Todos","id":"83e97679-be3b-4f56-ac54-474fc2533f80","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"API_TOKEN"},{"key":"password","value":"API_KEY"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"warning":"This is a duplicate header and will be overridden by the Authorization header generated by Postman.","key":"Authorization","value":"Basic HASH_BASE64","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"atual\": 1\n}"},"url":"https://www.sualoja.com.br/api/produtos_descontos/buscar/todos","description":"<p>Busca todos registros com paginação de resultados.</p>\n<p>É possível filtrar os resultados da busca usando um ou mais campos do JSON abaixo.</p>\n","urlObject":{"path":["api","produtos_descontos","buscar","todos"],"host":["https://www.sualoja.com.br"],"query":[],"variable":[]}},"response":[],"_postman_id":"83e97679-be3b-4f56-ac54-474fc2533f80"},{"name":"ProdutoDesconto - Buscar por Produto","id":"50ae237c-8533-4ce7-86ff-908db6f7a0ce","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"API_TOKEN"},{"key":"password","value":"API_KEY"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"warning":"This is a duplicate header and will be overridden by the Authorization header generated by Postman.","key":"Authorization","value":"Basic HASH_BASE64","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"produto_id\": \"1\"\n}"},"url":"https://www.sualoja.com.br/api/produtos_descontos/buscar/produto_id","description":"<p>Busca registro pelo ID Braavo!</p>\n","urlObject":{"path":["api","produtos_descontos","buscar","produto_id"],"host":["https://www.sualoja.com.br"],"query":[],"variable":[]}},"response":[],"_postman_id":"50ae237c-8533-4ce7-86ff-908db6f7a0ce"}],"id":"464d2801-2917-4089-8939-89657dabe93f","description":"<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Campo</th>\n<th>Tipo</th>\n<th>Padrão</th>\n<th>Obrigatório</th>\n<th>Valores</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>produto_id</td>\n<td>int</td>\n<td></td>\n<td>sim</td>\n<td></td>\n</tr>\n<tr>\n<td>desconto_tipo</td>\n<td>string</td>\n<td></td>\n<td>sim</td>\n<td>P = Porcentagem  <br />F = Desconto Fixo</td>\n</tr>\n<tr>\n<td>desconto_valor</td>\n<td>float</td>\n<td></td>\n<td>sim</td>\n<td></td>\n</tr>\n<tr>\n<td>data_desconto_1</td>\n<td>date</td>\n<td>2010-01-01</td>\n<td>sim</td>\n<td></td>\n</tr>\n<tr>\n<td>data_desconto_2</td>\n<td>date</td>\n<td>2050-12-31</td>\n<td>sim</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","event":[{"listen":"prerequest","script":{"id":"993b8a34-3fc3-4eff-af67-07e5be5db723","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"af36fe87-5e8a-4935-a145-2d90305e0fc7","type":"text/javascript","exec":[""]}}],"_postman_id":"464d2801-2917-4089-8939-89657dabe93f"},{"name":"Produtos - Estoques","item":[{"name":"Estoque - Atualizar","id":"8025f66e-737f-4205-ada1-6a552cf05bde","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"API_TOKEN"},{"key":"password","value":"API_KEY"}]},"isInherited":false},"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"warning":"This is a duplicate header and will be overridden by the Authorization header generated by Postman.","key":"Authorization","value":"Basic HASH_BASE64","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"sku_id\": \"1\",\n  \"movimentacao\": \"balanco\",\n  \"lancamento\": \"10\"\n}"},"url":"https://www.sualoja.com.br/api/estoques/atualizar","urlObject":{"path":["api","estoques","atualizar"],"host":["https://www.sualoja.com.br"],"query":[],"variable":[]}},"response":[],"_postman_id":"8025f66e-737f-4205-ada1-6a552cf05bde"},{"name":"Estoque - Buscar por SKU ID","id":"f5aabec9-584c-45f4-8dcf-ab366fe9e726","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"API_TOKEN"},{"key":"password","value":"API_KEY"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"warning":"This is a duplicate header and will be overridden by the Authorization header generated by Postman.","key":"Authorization","value":"Basic HASH_BASE64","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"id\": \"1\"\n}"},"url":"https://www.sualoja.com.br/api/estoques/buscar/sku","description":"<p>Busca registro pelo ID Braavo!</p>\n","urlObject":{"path":["api","estoques","buscar","sku"],"host":["https://www.sualoja.com.br"],"query":[],"variable":[]}},"response":[],"_postman_id":"f5aabec9-584c-45f4-8dcf-ab366fe9e726"},{"name":"Estoque - Buscar por Produto ID","id":"1bfd7da1-3d16-4834-bf09-5e3cbff2b3f8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"API_TOKEN"},{"key":"password","value":"API_KEY"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"warning":"This is a duplicate header and will be overridden by the Authorization header generated by Postman.","key":"Authorization","value":"Basic HASH_BASE64","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"id\": \"1\"\n}"},"url":"https://www.sualoja.com.br/api/estoques/buscar/produto","description":"<p>Busca registro pelo ID Braavo!</p>\n","urlObject":{"path":["api","estoques","buscar","produto"],"host":["https://www.sualoja.com.br"],"query":[],"variable":[]}},"response":[],"_postman_id":"1bfd7da1-3d16-4834-bf09-5e3cbff2b3f8"},{"name":"Estoque - Buscar por Movimentações","id":"ebc74751-5c6a-4de8-890a-23f49d3a33a0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"API_TOKEN"},{"key":"password","value":"API_KEY"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Basic HASH_BASE64","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"sku_id\": \"17852\"\n}"},"url":"https://www.sualoja.com.br/api/estoques/buscar/movimentacao","description":"<p>Busca registro pelo ID Braavo!</p>\n","urlObject":{"path":["api","estoques","buscar","movimentacao"],"host":["https://www.sualoja.com.br"],"query":[],"variable":[]}},"response":[],"_postman_id":"ebc74751-5c6a-4de8-890a-23f49d3a33a0"}],"id":"45f0ba66-884d-4171-a02b-b66117bde1d1","description":"<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Campo</th>\n<th>Tipo</th>\n<th>Padrão</th>\n<th>Obrigatório</th>\n<th>Valores</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>sku_id</td>\n<td>int</td>\n<td></td>\n<td>sim</td>\n<td></td>\n</tr>\n<tr>\n<td>movimentacao</td>\n<td>string</td>\n<td></td>\n<td>sim</td>\n<td>entrada  <br />saida  <br />balanco</td>\n</tr>\n<tr>\n<td>lancamento</td>\n<td>int</td>\n<td>0</td>\n<td>sim</td>\n<td>0-9</td>\n</tr>\n<tr>\n<td>doca_id</td>\n<td>int</td>\n<td>1</td>\n<td>não</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","event":[{"listen":"prerequest","script":{"id":"fc9fe13e-058c-44b2-afbe-77b86193c0d0","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"93499baa-de31-49a4-9ace-5e014df90aa5","type":"text/javascript","exec":[""]}}],"_postman_id":"45f0ba66-884d-4171-a02b-b66117bde1d1"},{"name":"Pedidos","item":[{"name":"Pedido - Adicionar","id":"29dd9439-c234-4470-abbe-82c9fe32d56f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"API_TOKEN"},{"key":"password","value":"API_KEY"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"warning":"This is a duplicate header and will be overridden by the Authorization header generated by Postman.","key":"Authorization","value":"Basic HASH_BASE64","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"pedido_peso\": \"0.300\",\n    \"pedido_qtde\": \"1\",\n    \"pedido_prazo\": \"1\",\n    \"pedido_desconto\": \"0.00\",\n    \"pedido_total\": \"10.00\",\n    \"pedido_geral\": \"10.00\",\n    \"pedido_cancelado\": \"0.00\",\n    \"usuario_id\": \"100\",\n    \"usuario_pessoa\": \"1\",\n    \"usuario_nome\": \"Ataliba Leonel\",\n    \"usuario_cpf\": \"656.920.938-80\",\n    \"usuario_empresa\": \"\",\n    \"usuario_cnpj\": \"\",\n    \"usuario_ie\": \"\",\n    \"usuario_im\": \"\",\n    \"usuario_email\": \"ataliba@braavo.com.br\",\n    \"usuario_tel_1\": \"1123053965\",\n    \"usuario_tel_2\": \"\",\n    \"entrega_cep\": \"03310000\",\n    \"entrega_endereco\": \"Rua Itapura\",\n    \"entrega_numero\": \"300\",\n    \"entrega_complemento\": \"SL 1505\",\n    \"entrega_bairro\": \"Vila Gomes Cardim\",\n    \"entrega_cidade\": \"São Paulo\",\n    \"entrega_estado\": \"SP\",\n    \"entrega_pais\": \"BR\",\n    \"entrega_lembrete\": \"Braavo\",\n    \"frete_nome\": \"sedex\",\n    \"frete_titulo\": \"Sedex\",\n    \"frete_prazo\": \"1\",\n    \"frete_mensagem\": \"lorem ipsum\",\n    \"frete_embalagem\": \"comum\",\n    \"frete_valor\": \"0.00\",\n    \"pagamento_nome\": \"pagseguro_boleto\",\n    \"pagamento_titulo\": \"Boleto PagSeguro\",\n    \"pagamento_valor\": \"10.00\",\n    \"pagamento_link\": \"\",\n    \"desconto_id\": \"0\",\n    \"desconto_nome\": \"\",\n    \"desconto_codigo\": \"\",\n    \"desconto_valor\": \"0.00\",\n    \"parcela_numero\": \"0\",\n    \"parcela_valor\": \"0.00\",\n    \"parcela_desconto\": \"0.00\",\n    \"produtos\": [\n        {\n            \"produto_id\": \"1104\",\n            \"nome\": \"Produto Teste\",\n            \"ncm\": \"NCM123\",\n            \"deduzir\": \"1\",\n            \"quantidade\": \"1\",\n            \"peso\": \"0.300\",\n            \"prazo\": \"1\",\n            \"preco_custo\": \"0.00\",\n            \"preco\": \"10.00\",\n            \"total\": \"10.00\",\n            \"sku_id\": \"2086\",\n            \"sku_ref\": \"\",\n            \"gtin\": \"GTIN123\",\n            \"var1_id\": \"11\",\n            \"var2_id\": \"8\",\n            \"var1_nome\": \"Cor: Preto\",\n            \"var2_nome\": \"Tamanho: M\"\n        }\n    ]\n}"},"url":"https://www.sualoja.com.br/api/pedidos/adicionar","urlObject":{"path":["api","pedidos","adicionar"],"host":["https://www.sualoja.com.br"],"query":[],"variable":[]}},"response":[],"_postman_id":"29dd9439-c234-4470-abbe-82c9fe32d56f"},{"name":"Pedido - Buscar Todos","id":"8dc00a2c-bfed-44f9-ab05-4415e143e2de","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"API_TOKEN"},{"key":"password","value":"API_KEY"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"warning":"This is a duplicate header and will be overridden by the Authorization header generated by Postman.","key":"Authorization","value":"Basic HASH_BASE64","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"atual\": \"1\",\n    \"usuario_id\": \"1\",\n    \"status_pagamento\": \"3\",\n    \"status_entrega\": \"20\",\n    \"data_aprovado\": \"2020-08-28\",\n    \"data_alterado\": \"2020-10-22\",\n    \"data_criado\": \"2020-08-28\"\n}"},"url":"https://www.sualoja.com.br/api/pedidos/buscar/todos","description":"<p>Busca todos registros com paginação de resultados.</p>\n<p>É possível filtrar os resultados da busca usando um ou mais campos do JSON abaixo.</p>\n","urlObject":{"path":["api","pedidos","buscar","todos"],"host":["https://www.sualoja.com.br"],"query":[],"variable":[]}},"response":[],"_postman_id":"8dc00a2c-bfed-44f9-ab05-4415e143e2de"},{"name":"Pedido - Buscar por ID","id":"c617ce9a-f468-4975-b4e0-f679c2f58e59","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"API_TOKEN"},{"key":"password","value":"API_KEY"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"warning":"This is a duplicate header and will be overridden by the Authorization header generated by Postman.","key":"Authorization","value":"Basic HASH_BASE64","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"id\": \"3540\"\n}"},"url":"https://www.sualoja.com.br/api/pedidos/buscar/id","description":"<p>Busca pedido pelo ID Braavo!</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>campo</th>\n<th>valor</th>\n<th>obrigatório</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>2875</td>\n<td>sim</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["api","pedidos","buscar","id"],"host":["https://www.sualoja.com.br"],"query":[],"variable":[]}},"response":[],"_postman_id":"c617ce9a-f468-4975-b4e0-f679c2f58e59"}],"id":"2dd535e2-5b75-4104-9e43-565eca930986","_postman_id":"2dd535e2-5b75-4104-9e43-565eca930986","description":""},{"name":"Pedidos Pagamentos","item":[{"name":"Pedido Pagamentos - Adicionar","id":"e1d6d788-fa6d-4061-9cfb-38e76e08c1ec","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"API_TOKEN"},{"key":"password","value":"API_KEY"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"warning":"This is a duplicate header and will be overridden by the Authorization header generated by Postman.","key":"Authorization","value":"Basic HASH_BASE64","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"pedido_id\": \"2950\",\n    \"status_id\": \"3\",\n    \"notificar\": \"1\"\n}"},"url":"https://www.sualoja.com.br/api/pedidos_pagamentos/adicionar","description":"<p>Altera o status de pagamento do Pedido.</p>\n<p><strong>Atenção: Alterar o status do pedido para Aprovado ou Cancelado, também será feito alteração no Gateway (captura ou estorno)</strong></p>\n<h2 id=\"campos\">Campos</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>campo</th>\n<th>tipo</th>\n<th>obrigatório</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>pedido_id</td>\n<td>int</td>\n<td>sim</td>\n</tr>\n<tr>\n<td>status_id</td>\n<td>int</td>\n<td>sim</td>\n</tr>\n<tr>\n<td>notificar</td>\n<td>int</td>\n<td>sim</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["api","pedidos_pagamentos","adicionar"],"host":["https://www.sualoja.com.br"],"query":[],"variable":[]}},"response":[],"_postman_id":"e1d6d788-fa6d-4061-9cfb-38e76e08c1ec"},{"name":"Pedido Pagamentos - Buscar Todos","id":"b0f8590b-fe7b-4cf2-b108-6e36400a32ba","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"API_TOKEN"},{"key":"password","value":"API_KEY"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"warning":"This is a duplicate header and will be overridden by the Authorization header generated by Postman.","key":"Authorization","value":"Basic HASH_BASE64","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"atual\": \"1\",\n    \"data_alterado\": \"2020-10-22\",\n    \"data_criado\": \"2020-08-28\"\n}"},"url":"https://www.sualoja.com.br/api/pedidos_pagamentos/buscar/todos","description":"<p>Busca todos registros com paginação de resultados.</p>\n<p>É possível filtrar os resultados da busca usando um ou mais campos do JSON abaixo.</p>\n<h2 id=\"campos\">Campos</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>campo</th>\n<th>tipo</th>\n<th>obrigatório</th>\n<th>descrição</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>atual</td>\n<td>int</td>\n<td>não</td>\n<td>número da páginação</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"retorno\">Retorno</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{ \"ok\": [ pedidos ], \"pag\": { dados da paginacao } }\n\n</code></pre>","urlObject":{"path":["api","pedidos_pagamentos","buscar","todos"],"host":["https://www.sualoja.com.br"],"query":[],"variable":[]}},"response":[],"_postman_id":"b0f8590b-fe7b-4cf2-b108-6e36400a32ba"},{"name":"Pedido Pagamentos - Buscar por Pedido","id":"ba07b21e-eed4-4e28-b245-03010db04ef1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"API_TOKEN"},{"key":"password","value":"API_KEY"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"warning":"This is a duplicate header and will be overridden by the Authorization header generated by Postman.","key":"Authorization","value":"Basic HASH_BASE64","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"pedido_id\": \"2950\"\n}"},"url":"https://www.sualoja.com.br/api/pedidos_pagamentos/buscar/pedido_id","description":"<p>Busca pelo ID Braavo!</p>\n<h2 id=\"campos\">Campos</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>campo</th>\n<th>tipo</th>\n<th>obrigatório</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>pedido_id</td>\n<td>int</td>\n<td>sim</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["api","pedidos_pagamentos","buscar","pedido_id"],"host":["https://www.sualoja.com.br"],"query":[],"variable":[]}},"response":[],"_postman_id":"ba07b21e-eed4-4e28-b245-03010db04ef1"},{"name":"Pedido Pagamentos - Buscar por Status","id":"88680d69-501e-4f0c-8678-b12174452a0b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"API_TOKEN"},{"key":"password","value":"API_KEY"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"warning":"This is a duplicate header and will be overridden by the Authorization header generated by Postman.","key":"Authorization","value":"Basic HASH_BASE64","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"status_id\": \"3\"\n}"},"url":"https://www.sualoja.com.br/api/pedidos_pagamentos/buscar/status","description":"<p>Busca pelo ID Braavo!</p>\n<h2 id=\"campos\">Campos</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>campo</th>\n<th>tipo</th>\n<th>obrigatório</th>\n<th>descrição</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>status_id</td>\n<td>int</td>\n<td>sim</td>\n<td></td>\n</tr>\n<tr>\n<td>atual</td>\n<td>int</td>\n<td>não</td>\n<td>número da páginação</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["api","pedidos_pagamentos","buscar","status"],"host":["https://www.sualoja.com.br"],"query":[],"variable":[]}},"response":[],"_postman_id":"88680d69-501e-4f0c-8678-b12174452a0b"}],"id":"4c23a13e-c717-4402-922e-8c5f75cf5a96","description":"<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Campo</th>\n<th>Tipo</th>\n<th>Padrão</th>\n<th>Obrigatório</th>\n<th>Valores</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>int</td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>pedido_id</td>\n<td>int</td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>status_id</td>\n<td>int</td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>usuario_id</td>\n<td>int</td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>notificar</td>\n<td>int</td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>data_alterado</td>\n<td>datetime</td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>data_criado</td>\n<td>datetime</td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"tabela-de-status_id\">Tabela de status_id</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Código</th>\n<th>Tipo</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>0</td>\n<td>Registrado</td>\n</tr>\n<tr>\n<td>1</td>\n<td>Aguardando Pagamento</td>\n</tr>\n<tr>\n<td>2</td>\n<td>Em Análise</td>\n</tr>\n<tr>\n<td>3</td>\n<td>Aprovado</td>\n</tr>\n<tr>\n<td>6</td>\n<td>Cancelado</td>\n</tr>\n</tbody>\n</table>\n</div>","event":[{"listen":"prerequest","script":{"id":"607e4819-a393-45f6-b189-9fa9ebb39213","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"e3092947-28da-4de6-b6b6-3f0a0f96bed8","type":"text/javascript","exec":[""]}}],"_postman_id":"4c23a13e-c717-4402-922e-8c5f75cf5a96"},{"name":"Pedidos Entregas","item":[{"name":"Pedido Entregas - Adicionar","id":"b7fe307c-879d-471b-b83c-0f1890801231","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"API_TOKEN"},{"key":"password","value":"API_KEY"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"warning":"This is a duplicate header and will be overridden by the Authorization header generated by Postman.","key":"Authorization","value":"Basic HASH_BASE64","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"pedido_id\": \"2950\",\n    \"status_id\": \"20\",\n    \"notificar\": \"1\"\n}"},"url":"https://www.sualoja.com.br/api/pedidos_entregas/adicionar","description":"<p>Adiciona status de entrega no Pedido.</p>\n<p>É possível modificar a data de entrega do pedido.<br />Para isto basta enviar no JSON quando o \"status_id: 23\" o campo \"data_evento\": \"aaaa-mm-dd hh:mm:ss\"</p>\n<h2 id=\"campos\">Campos</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>campo</th>\n<th>tipo</th>\n<th>obrigatório</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>pedido_id</td>\n<td>int</td>\n<td>sim</td>\n</tr>\n<tr>\n<td>status_id</td>\n<td>int</td>\n<td>sim</td>\n</tr>\n<tr>\n<td>notificar</td>\n<td>int</td>\n<td>sim</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["api","pedidos_entregas","adicionar"],"host":["https://www.sualoja.com.br"],"query":[],"variable":[]}},"response":[],"_postman_id":"b7fe307c-879d-471b-b83c-0f1890801231"},{"name":"Pedido Entregas - Buscar Todos","id":"9c4ca14c-3ef1-49fc-bb8a-16981ac49ea6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"API_TOKEN"},{"key":"password","value":"API_KEY"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"warning":"This is a duplicate header and will be overridden by the Authorization header generated by Postman.","key":"Authorization","value":"Basic HASH_BASE64","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"atual\": \"1\",\n    \"data_alterado\": \"2020-10-22\",\n    \"data_criado\": \"2020-08-28\"\n}"},"url":"https://www.sualoja.com.br/api/pedidos_entregas/buscar/todos","description":"<p>Busca todos registros com paginação de resultados.</p>\n<p>É possível filtrar os resultados da busca usando um ou mais campos do JSON abaixo.</p>\n","urlObject":{"path":["api","pedidos_entregas","buscar","todos"],"host":["https://www.sualoja.com.br"],"query":[],"variable":[]}},"response":[],"_postman_id":"9c4ca14c-3ef1-49fc-bb8a-16981ac49ea6"},{"name":"Pedido Entregas - Buscar por Pedido","id":"8b3659d6-bec2-482e-842a-beddc7a4c8a6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"API_TOKEN"},{"key":"password","value":"API_KEY"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"warning":"This is a duplicate header and will be overridden by the Authorization header generated by Postman.","key":"Authorization","value":"Basic HASH_BASE64","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"pedido_id\": \"2950\"\n}"},"url":"https://www.sualoja.com.br/api/pedidos_entregas/buscar/pedido_id","description":"<p>Busca pelo ID Braavo!</p>\n<h2 id=\"campos\">Campos</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>campo</th>\n<th>tipo</th>\n<th>obrigatório</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>pedido_id</td>\n<td>int</td>\n<td>sim</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["api","pedidos_entregas","buscar","pedido_id"],"host":["https://www.sualoja.com.br"],"query":[],"variable":[]}},"response":[],"_postman_id":"8b3659d6-bec2-482e-842a-beddc7a4c8a6"},{"name":"Pedido Entregas - Buscar por Status","id":"781df8c6-6048-48e7-b7da-1d9e6ae37247","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"API_TOKEN"},{"key":"password","value":"API_KEY"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"warning":"This is a duplicate header and will be overridden by the Authorization header generated by Postman.","key":"Authorization","value":"Basic HASH_BASE64","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"status_id\": \"20\"\n}"},"url":"https://www.sualoja.com.br/api/pedidos_entregas/buscar/status","description":"<p>Busca pelo ID Braavo!</p>\n<h2 id=\"campos\">Campos</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>campo</th>\n<th>tipo</th>\n<th>obrigatório</th>\n<th>descrição</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>status_id</td>\n<td>int</td>\n<td>sim</td>\n<td></td>\n</tr>\n<tr>\n<td>atual</td>\n<td>int</td>\n<td>não</td>\n<td>número da páginação</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["api","pedidos_entregas","buscar","status"],"host":["https://www.sualoja.com.br"],"query":[],"variable":[]}},"response":[],"_postman_id":"781df8c6-6048-48e7-b7da-1d9e6ae37247"}],"id":"23c04cf8-5c74-416a-9780-e36e6f20f198","description":"<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Campo</th>\n<th>Tipo</th>\n<th>Padrão</th>\n<th>Obrigatório</th>\n<th>Valores</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>int</td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>pedido_id</td>\n<td>int</td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>status_id</td>\n<td>int</td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>usuario_id</td>\n<td>int</td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>notificar</td>\n<td>int</td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>data_alterado</td>\n<td>datetime</td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>data_criado</td>\n<td>datetime</td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"tabela-de-status_id\">Tabela de status_id</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Código</th>\n<th>Tipo</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>Separação</strong></td>\n<td></td>\n</tr>\n<tr>\n<td>0</td>\n<td>Sem Status</td>\n</tr>\n<tr>\n<td>1</td>\n<td>Separando</td>\n</tr>\n<tr>\n<td>2</td>\n<td>Separação Incompleta</td>\n</tr>\n<tr>\n<td>3</td>\n<td>Separação Completa</td>\n</tr>\n<tr>\n<td>4</td>\n<td>Produção/Desenvolvimento</td>\n</tr>\n<tr>\n<td>--</td>\n<td>--</td>\n</tr>\n<tr>\n<td><strong>Embalagem</strong></td>\n<td></td>\n</tr>\n<tr>\n<td>10</td>\n<td>Embalado</td>\n</tr>\n<tr>\n<td>11</td>\n<td>Conferido</td>\n</tr>\n<tr>\n<td>15</td>\n<td>Prioridade</td>\n</tr>\n<tr>\n<td>--</td>\n<td>--</td>\n</tr>\n<tr>\n<td><strong>Entrega</strong></td>\n<td></td>\n</tr>\n<tr>\n<td>20</td>\n<td>Correios (Despachado)</td>\n</tr>\n<tr>\n<td>21</td>\n<td>Transportadora (Despachado)</td>\n</tr>\n<tr>\n<td>22</td>\n<td>Retirou</td>\n</tr>\n<tr>\n<td>23</td>\n<td>Entregue</td>\n</tr>\n<tr>\n<td>24</td>\n<td>Destinatário ausente</td>\n</tr>\n<tr>\n<td>25</td>\n<td>Em atraso</td>\n</tr>\n<tr>\n<td>26</td>\n<td>Aguardando Retira</td>\n</tr>\n<tr>\n<td>27</td>\n<td>Extraviado/Roubo</td>\n</tr>\n<tr>\n<td>28</td>\n<td>Saiu para entrega</td>\n</tr>\n<tr>\n<td>--</td>\n<td>--</td>\n</tr>\n<tr>\n<td><strong>Devolução</strong></td>\n<td></td>\n</tr>\n<tr>\n<td>30</td>\n<td>Arrependimento</td>\n</tr>\n<tr>\n<td>31</td>\n<td>Defeito</td>\n</tr>\n<tr>\n<td>32</td>\n<td>Troca</td>\n</tr>\n<tr>\n<td>33</td>\n<td>Endereço Errado</td>\n</tr>\n<tr>\n<td>--</td>\n<td>--</td>\n</tr>\n<tr>\n<td><strong>Concluído</strong></td>\n<td></td>\n</tr>\n<tr>\n<td>40</td>\n<td>Concluído</td>\n</tr>\n<tr>\n<td>41</td>\n<td>Chargeback</td>\n</tr>\n<tr>\n<td>42</td>\n<td>Devolvido ao remetente</td>\n</tr>\n<tr>\n<td>43</td>\n<td>Cancelado</td>\n</tr>\n</tbody>\n</table>\n</div>","event":[{"listen":"prerequest","script":{"id":"241dd565-d8d8-401e-a61e-9f929519064c","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"58296e1f-3222-46d5-9466-b6db4581f4b0","type":"text/javascript","exec":[""]}}],"_postman_id":"23c04cf8-5c74-416a-9780-e36e6f20f198"},{"name":"Pedidos Rastreios","item":[{"name":"Pedido Rastreios - Adicionar","id":"3d3e5bd8-54da-475c-9ecd-6ff0372412ef","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"API_TOKEN"},{"key":"password","value":"API_KEY"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"warning":"This is a duplicate header and will be overridden by the Authorization header generated by Postman.","key":"Authorization","value":"Basic HASH_BASE64","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"pedido_id\": \"2950\",\n    \"tipo_id\": \"1\",\n    \"rastreio\": \"BR123456789SP\",\n    \"notificar\": \"1\"\n}"},"url":"https://www.sualoja.com.br/api/pedidos_rastreios/adicionar","description":"<p>Adiciona código de rastreio no Pedido.</p>\n<h2 id=\"campos\">Campos</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>campo</th>\n<th>tipo</th>\n<th>obrigatório</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>pedido_id</td>\n<td>int</td>\n<td>sim</td>\n</tr>\n<tr>\n<td>tipo_id</td>\n<td>int</td>\n<td>sim</td>\n</tr>\n<tr>\n<td>rastreio</td>\n<td>string</td>\n<td>sim</td>\n</tr>\n<tr>\n<td>notificar</td>\n<td>int</td>\n<td>sim</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["api","pedidos_rastreios","adicionar"],"host":["https://www.sualoja.com.br"],"query":[],"variable":[]}},"response":[],"_postman_id":"3d3e5bd8-54da-475c-9ecd-6ff0372412ef"},{"name":"Pedido Rastreios - Buscar Todos","id":"dda4a244-87ea-43d3-9046-50f8241ff01b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"API_TOKEN"},{"key":"password","value":"API_KEY"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"warning":"This is a duplicate header and will be overridden by the Authorization header generated by Postman.","key":"Authorization","value":"Basic HASH_BASE64","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"atual\": \"1\",\n    \"data_alterado\": \"2020-10-22\",\n    \"data_criado\": \"2020-08-28\"\n}"},"url":"https://www.sualoja.com.br/api/pedidos_rastreios/buscar/todos","description":"<p>Busca todos registros com paginação de resultados.</p>\n<p>É possível filtrar os resultados da busca usando um ou mais campos do JSON abaixo.</p>\n","urlObject":{"path":["api","pedidos_rastreios","buscar","todos"],"host":["https://www.sualoja.com.br"],"query":[],"variable":[]}},"response":[],"_postman_id":"dda4a244-87ea-43d3-9046-50f8241ff01b"},{"name":"Pedido Rastreios - Buscar por Pedido","id":"8f097a32-4f1b-44d6-8eee-9e2d5ca4a85a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"API_TOKEN"},{"key":"password","value":"API_KEY"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"warning":"This is a duplicate header and will be overridden by the Authorization header generated by Postman.","key":"Authorization","value":"Basic HASH_BASE64","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"pedido_id\": \"3041\"\n}"},"url":"https://www.sualoja.com.br/api/pedidos_rastreios/buscar/pedido_id","description":"<p>Busca Pedido pelo ID Braavo!</p>\n<h2 id=\"campos\">Campos</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>campo</th>\n<th>tipo</th>\n<th>obrigatório</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>pedido_id</td>\n<td>int</td>\n<td>sim</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["api","pedidos_rastreios","buscar","pedido_id"],"host":["https://www.sualoja.com.br"],"query":[],"variable":[]}},"response":[],"_postman_id":"8f097a32-4f1b-44d6-8eee-9e2d5ca4a85a"},{"name":"Pedido Rastreios - Buscar por Status","id":"202d9a43-7cdf-4666-80eb-cc73ae8810c8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"API_TOKEN"},{"key":"password","value":"API_KEY"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"warning":"This is a duplicate header and will be overridden by the Authorization header generated by Postman.","key":"Authorization","value":"Basic HASH_BASE64","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"tipo_id\": \"1\"\n}"},"url":"https://www.sualoja.com.br/api/pedidos_rastreios/buscar/tipo","description":"<p>Busca Pedido pelo Status Braavo!</p>\n<h2 id=\"campos\">Campos</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>campo</th>\n<th>tipo</th>\n<th>obrigatório</th>\n<th>descrição</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>tipo_id</td>\n<td>int</td>\n<td>sim</td>\n<td></td>\n</tr>\n<tr>\n<td>atual</td>\n<td>int</td>\n<td>não</td>\n<td>número da páginação</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["api","pedidos_rastreios","buscar","tipo"],"host":["https://www.sualoja.com.br"],"query":[],"variable":[]}},"response":[],"_postman_id":"202d9a43-7cdf-4666-80eb-cc73ae8810c8"}],"id":"a7154342-d989-43fe-aa4b-5a87183cdac1","description":"<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Campo</th>\n<th>Tipo</th>\n<th>Padrão</th>\n<th>Obrigatório</th>\n<th>Valores</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>int</td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>pedido_id</td>\n<td>int</td>\n<td></td>\n<td>sim</td>\n<td></td>\n</tr>\n<tr>\n<td>tipo_id</td>\n<td>int</td>\n<td></td>\n<td>sim</td>\n<td></td>\n</tr>\n<tr>\n<td>usuario_id</td>\n<td>int</td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>rastreio</td>\n<td>string</td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>notificar</td>\n<td>int</td>\n<td></td>\n<td>sim</td>\n<td></td>\n</tr>\n<tr>\n<td>data_alterado</td>\n<td>datetime</td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>data_criado</td>\n<td>datetime</td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"tabela-de-tipo_id\">Tabela de tipo_id</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Código</th>\n<th>Tipo</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>Correios</td>\n</tr>\n<tr>\n<td>2</td>\n<td>FlashCourier</td>\n</tr>\n<tr>\n<td>3</td>\n<td>JadLog</td>\n</tr>\n<tr>\n<td>4</td>\n<td>Mandaê</td>\n</tr>\n<tr>\n<td>5</td>\n<td>Melhor Envio</td>\n</tr>\n<tr>\n<td>6</td>\n<td>DLog</td>\n</tr>\n<tr>\n<td>7</td>\n<td>DLog - Onde Está</td>\n</tr>\n<tr>\n<td>8</td>\n<td>Total Express</td>\n</tr>\n</tbody>\n</table>\n</div>","event":[{"listen":"prerequest","script":{"id":"241dd565-d8d8-401e-a61e-9f929519064c","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"58296e1f-3222-46d5-9466-b6db4581f4b0","type":"text/javascript","exec":[""]}}],"_postman_id":"a7154342-d989-43fe-aa4b-5a87183cdac1"},{"name":"Pedidos Mensagens","item":[{"name":"Pedido Mensagens - Adicionar","id":"3cb5500f-3718-4fdc-94ac-b64ad2bcab48","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"API_TOKEN"},{"key":"password","value":"API_KEY"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"warning":"This is a duplicate header and will be overridden by the Authorization header generated by Postman.","key":"Authorization","value":"Basic HASH_BASE64","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"pedido_id\": \"2950\",\n    \"mensagem\": \"Lorem ipsum dolor sit amet, consectetur adipisicing elit.\",\n    \"notificar\": \"1\"\n}"},"url":"https://www.sualoja.com.br/api/pedidos_mensagens/adicionar","description":"<p>Adiciona código da nota fical no Pedido.</p>\n<h2 id=\"campos\">Campos</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>campo</th>\n<th>tipo</th>\n<th>obrigatório</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>pedido_id</td>\n<td>int</td>\n<td>sim</td>\n</tr>\n<tr>\n<td>data</td>\n<td>date</td>\n<td>sim</td>\n</tr>\n<tr>\n<td>numero</td>\n<td>string</td>\n<td>sim</td>\n</tr>\n<tr>\n<td>serie</td>\n<td>string</td>\n<td>sim</td>\n</tr>\n<tr>\n<td>acesso</td>\n<td>string</td>\n<td>sim</td>\n</tr>\n<tr>\n<td>url</td>\n<td>string</td>\n<td>sim</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["api","pedidos_mensagens","adicionar"],"host":["https://www.sualoja.com.br"],"query":[],"variable":[]}},"response":[],"_postman_id":"3cb5500f-3718-4fdc-94ac-b64ad2bcab48"},{"name":"Pedido Mensagens - Buscar Todos","id":"2749d363-910c-4fdf-913f-7ebde2d01b87","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"API_TOKEN"},{"key":"password","value":"API_KEY"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"warning":"This is a duplicate header and will be overridden by the Authorization header generated by Postman.","key":"Authorization","value":"Basic HASH_BASE64","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"atual\": \"1\",\n    \"data_alterado\": \"2020-10-22\",\n    \"data_criado\": \"2020-08-28\"\n}"},"url":"https://www.sualoja.com.br/api/pedidos_mensagens/buscar/todos","description":"<p>Busca todos registros com paginação de resultados.</p>\n<p>É possível filtrar os resultados da busca usando um ou mais campos do JSON abaixo.</p>\n","urlObject":{"path":["api","pedidos_mensagens","buscar","todos"],"host":["https://www.sualoja.com.br"],"query":[],"variable":[]}},"response":[],"_postman_id":"2749d363-910c-4fdf-913f-7ebde2d01b87"},{"name":"Pedido Mensagens - Buscar por Pedido","id":"584a9e2d-08a3-4d82-868b-b8804ef0c3a9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"API_TOKEN"},{"key":"password","value":"API_KEY"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"warning":"This is a duplicate header and will be overridden by the Authorization header generated by Postman.","key":"Authorization","value":"Basic HASH_BASE64","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"pedido_id\": \"2951\"\n}"},"url":"https://www.sualoja.com.br/api/pedidos_mensagens/buscar/pedido_id","description":"<p>Busca Pedido pelo ID Braavo!</p>\n<h2 id=\"campos\">Campos</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>campo</th>\n<th>tipo</th>\n<th>obrigatório</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>pedido_id</td>\n<td>int</td>\n<td>sim</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["api","pedidos_mensagens","buscar","pedido_id"],"host":["https://www.sualoja.com.br"],"query":[],"variable":[]}},"response":[],"_postman_id":"584a9e2d-08a3-4d82-868b-b8804ef0c3a9"}],"id":"8b6c3224-d9b3-42b6-a851-e7d81c04af99","description":"<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Campo</th>\n<th>Tipo</th>\n<th>Padrão</th>\n<th>Obrigatório</th>\n<th>Valores</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>int</td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>pedido_id</td>\n<td>int</td>\n<td></td>\n<td>sim</td>\n<td></td>\n</tr>\n<tr>\n<td>usuario_id</td>\n<td>int</td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>mensagem</td>\n<td>string</td>\n<td></td>\n<td>sim</td>\n<td></td>\n</tr>\n<tr>\n<td>notificar</td>\n<td>int</td>\n<td></td>\n<td>sim</td>\n<td></td>\n</tr>\n<tr>\n<td>enviado</td>\n<td>int</td>\n<td></td>\n<td>sim</td>\n<td></td>\n</tr>\n<tr>\n<td>tentativas</td>\n<td>int</td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>data_alterado</td>\n<td>datetime</td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>data_criado</td>\n<td>datetime</td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","event":[{"listen":"prerequest","script":{"id":"ceeee1b9-e605-4aaa-8e57-4679619c9fed","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"9e43b5f0-0fe5-45db-9af3-6d6c8f03702e","type":"text/javascript","exec":[""]}}],"_postman_id":"8b6c3224-d9b3-42b6-a851-e7d81c04af99"},{"name":"Pedidos Notas","item":[{"name":"Pedido Notas - Adicionar","id":"f8720f21-9dfb-4200-9aba-3bc4fc9e9f98","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"API_TOKEN"},{"key":"password","value":"API_KEY"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Basic HASH_BASE64","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"pedido_id\": \"53216\",\n    \"data\": \"2022-07-26\",\n    \"numero\": \"1234\",\n    \"serie\": \"45689\",\n    \"acesso\": \"12345678901234567890123456789012345678901222\",\n    \"url\": \"\"\n}"},"url":"https://www.sualoja.com.br/api/pedidos_notas/adicionar","description":"<p>Adiciona código da nota fical no Pedido.</p>\n<h2 id=\"campos\">Campos</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>campo</th>\n<th>tipo</th>\n<th>obrigatório</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>pedido_id</td>\n<td>int</td>\n<td>sim</td>\n</tr>\n<tr>\n<td>data</td>\n<td>date</td>\n<td>sim</td>\n</tr>\n<tr>\n<td>numero</td>\n<td>string</td>\n<td>sim</td>\n</tr>\n<tr>\n<td>serie</td>\n<td>string</td>\n<td>sim</td>\n</tr>\n<tr>\n<td>acesso</td>\n<td>string</td>\n<td>sim</td>\n</tr>\n<tr>\n<td>url</td>\n<td>string</td>\n<td>sim</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["api","pedidos_notas","adicionar"],"host":["https://www.sualoja.com.br"],"query":[],"variable":[]}},"response":[],"_postman_id":"f8720f21-9dfb-4200-9aba-3bc4fc9e9f98"},{"name":"Pedido Notas - Buscar Todos","id":"ce855f64-f28c-4be3-b6be-19da5d399e84","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"API_TOKEN"},{"key":"password","value":"API_KEY"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"warning":"This is a duplicate header and will be overridden by the Authorization header generated by Postman.","key":"Authorization","value":"Basic HASH_BASE64","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"atual\": \"1\",\n    \"data_alterado\": \"2020-10-22\",\n    \"data_criado\": \"2020-08-28\"\n}"},"url":"https://www.sualoja.com.br/api/pedidos_notas/buscar/todos","description":"<p>Busca todos registros com paginação de resultados.</p>\n<p>É possível filtrar os resultados da busca usando um ou mais campos do JSON abaixo.</p>\n","urlObject":{"path":["api","pedidos_notas","buscar","todos"],"host":["https://www.sualoja.com.br"],"query":[],"variable":[]}},"response":[],"_postman_id":"ce855f64-f28c-4be3-b6be-19da5d399e84"},{"name":"Pedido Notas - Buscar por Pedido","id":"1f8050c7-9d2c-498d-9922-7305f947d2a4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"API_TOKEN"},{"key":"password","value":"API_KEY"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"warning":"This is a duplicate header and will be overridden by the Authorization header generated by Postman.","key":"Authorization","value":"Basic HASH_BASE64","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"pedido_id\": \"2950\"\n}"},"url":"https://www.sualoja.com.br/api/pedidos_notas/buscar/pedido_id","description":"<p>Busca Pedido pelo ID Braavo!</p>\n<h2 id=\"campos\">Campos</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>campo</th>\n<th>tipo</th>\n<th>obrigatório</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>pedido_id</td>\n<td>int</td>\n<td>sim</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["api","pedidos_notas","buscar","pedido_id"],"host":["https://www.sualoja.com.br"],"query":[],"variable":[]}},"response":[],"_postman_id":"1f8050c7-9d2c-498d-9922-7305f947d2a4"}],"id":"819630c9-19f1-41f9-914f-bce3f41ba593","description":"<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Campo</th>\n<th>Tipo</th>\n<th>Padrão</th>\n<th>Obrigatório</th>\n<th>Valores</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>int</td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>pedido_id</td>\n<td>int</td>\n<td></td>\n<td>sim</td>\n<td></td>\n</tr>\n<tr>\n<td>usuario_id</td>\n<td>int</td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>data</td>\n<td>date</td>\n<td></td>\n<td>sim</td>\n<td>aaaa-mm-dd</td>\n</tr>\n<tr>\n<td>numero</td>\n<td>string</td>\n<td></td>\n<td>sim</td>\n<td></td>\n</tr>\n<tr>\n<td>serie</td>\n<td>string</td>\n<td></td>\n<td>sim</td>\n<td></td>\n</tr>\n<tr>\n<td>acesso</td>\n<td>string</td>\n<td></td>\n<td>sim</td>\n<td></td>\n</tr>\n<tr>\n<td>url</td>\n<td>string</td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>data_alterado</td>\n<td>datetime</td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>data_criado</td>\n<td>datetime</td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","event":[{"listen":"prerequest","script":{"id":"241dd565-d8d8-401e-a61e-9f929519064c","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"58296e1f-3222-46d5-9466-b6db4581f4b0","type":"text/javascript","exec":[""]}}],"_postman_id":"819630c9-19f1-41f9-914f-bce3f41ba593"},{"name":"Pedidos Produtos","item":[{"name":"Pedido Produtos - Buscar Todos","id":"e8ce72a5-5bc6-4d59-ad7a-d5b99b424ebe","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"API_TOKEN"},{"key":"password","value":"API_KEY"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"warning":"This is a duplicate header and will be overridden by the Authorization header generated by Postman.","key":"Authorization","value":"Basic HASH_BASE64","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"atual\": \"1\",\n    \"data_alterado\": \"2020-10-22\",\n    \"data_criado\": \"2020-08-28\"\n}"},"url":"https://www.sualoja.com.br/api/pedidos_produtos/buscar/todos","description":"<p>Busca todos registros com paginação de resultados.</p>\n<p>É possível filtrar os resultados da busca usando um ou mais campos do JSON abaixo.</p>\n","urlObject":{"path":["api","pedidos_produtos","buscar","todos"],"host":["https://www.sualoja.com.br"],"query":[],"variable":[]}},"response":[],"_postman_id":"e8ce72a5-5bc6-4d59-ad7a-d5b99b424ebe"},{"name":"Pedido Produtos - Buscar por Pedido","id":"232d23fe-9941-4bf4-a731-f97d486c9166","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"API_TOKEN"},{"key":"password","value":"API_KEY"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"warning":"This is a duplicate header and will be overridden by the Authorization header generated by Postman.","key":"Authorization","value":"Basic HASH_BASE64","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"pedido_id\": \"2950\"\n}"},"url":"https://www.sualoja.com.br/api/pedidos_produtos/buscar/pedido_id","description":"<p>Busca Pedido pelo ID Braavo!</p>\n<h2 id=\"campos\">Campos</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>campo</th>\n<th>tipo</th>\n<th>obrigatório</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>pedido_id</td>\n<td>int</td>\n<td>sim</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["api","pedidos_produtos","buscar","pedido_id"],"host":["https://www.sualoja.com.br"],"query":[],"variable":[]}},"response":[],"_postman_id":"232d23fe-9941-4bf4-a731-f97d486c9166"}],"id":"1101b895-b056-405d-8361-7ca88fe2894e","description":"<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Campo</th>\n<th>Tipo</th>\n<th>Padrão</th>\n<th>Obrigatório</th>\n<th>Valores</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>int</td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>pedido_id</td>\n<td>int</td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>tipo_id</td>\n<td>int</td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>produto_id</td>\n<td>int</td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>sku_id</td>\n<td>int</td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>conjunto_id</td>\n<td>int</td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>categoria_id</td>\n<td>int</td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>fornecedor_id</td>\n<td>int</td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>marca_id</td>\n<td>int</td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>nome</td>\n<td>string</td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>sku</td>\n<td>string</td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>ncm</td>\n<td>string</td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>gtin</td>\n<td>string</td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>peso</td>\n<td>decimal</td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>prazo</td>\n<td>int</td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>separado</td>\n<td>int</td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>deduzir</td>\n<td>int</td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>quantidade</td>\n<td>int</td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>cancelado</td>\n<td>int</td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>troca</td>\n<td>int</td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>pontos</td>\n<td>int</td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>preco_custo</td>\n<td>float</td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>preco_venda</td>\n<td>float</td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>preco</td>\n<td>float</td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>total</td>\n<td>float</td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>desconto_valor</td>\n<td>float</td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>desconto_preco</td>\n<td>float</td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>desconto_vale_preco</td>\n<td>float</td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>desconto_vale_total</td>\n<td>float</td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>var1_id</td>\n<td>int</td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>var2_id</td>\n<td>int</td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>var1_nome</td>\n<td>string</td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>var2_nome</td>\n<td>string</td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>json_pers</td>\n<td>array</td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>data_alterado</td>\n<td>date</td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>data_criado</td>\n<td>date</td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","event":[{"listen":"prerequest","script":{"id":"e19e6309-4d96-4bf8-9107-174ebd33a272","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"27b0779d-9b2f-4c04-8bfc-2353c70269b2","type":"text/javascript","exec":[""]}}],"_postman_id":"1101b895-b056-405d-8361-7ca88fe2894e"}],"event":[{"listen":"prerequest","script":{"id":"bc1294d3-5d2e-4396-836a-69e1168c7c12","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"25582a0e-88e0-4e47-9d79-c25b338c3765","type":"text/javascript","exec":[""]}}],"variable":[{"key":"HOST","value":"https://www.sualoja.com.br","type":"string"},{"key":"API_TOKEN","value":"API_TOKEN","type":"string"},{"key":"API_KEY","value":"API_KEY","type":"string"},{"key":"AUTORIZACAO","value":"Basic HASH_BASE64","type":"string"}]}