{
  "info": {
    "_postman_id": "e06fd028-9a95-4849-82db-87cd47b47f75",
    "name": "Hooked API",
    "description": "Coleção completa da API Hooked. Configure as variáveis base_url e token antes de usar.",
    "schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json"
  },
  "item": [
    {
      "id": "38c52538-f722-423f-a9a5-333378dba17d",
      "name": "Autenticação",
      "item": [
        {
          "id": "7a5d35b0-50e8-4418-9d3c-3c9dd32ad3a8",
          "name": "POST /api/conta/login",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{token}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/conta/login",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "conta",
                "login"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{\n  \"email\": \"seu@email.com\",\n  \"password\": \"suaSenha\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": [],
          "event": [
            {
              "listen": "test",
              "script": {
                "type": "text/javascript",
                "exec": [
                  "if (pm.response.code === 200) {",
                  "  const json = pm.response.json();",
                  "  if (json && json.data && json.data.serviceToken) {",
                  "    pm.environment.set('token', json.data.serviceToken);",
                  "    console.log('Token capturado e salvo em {{token}}.');",
                  "  }",
                  "}"
                ]
              }
            }
          ]
        },
        {
          "id": "082323eb-320a-4e80-aed3-690c64cb4551",
          "name": "GET /api/contas",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{token}}",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/contas",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "contas"
              ],
              "query": [
                {
                  "key": "property",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "orderBy",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "pageNumber",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "pageSize",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "descricao",
                  "value": "",
                  "description": "",
                  "disabled": true
                }
              ]
            }
          },
          "response": []
        },
        {
          "id": "25d5efae-fe80-47dd-9962-6b7d89f5325a",
          "name": "POST /api/contas",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{token}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/contas",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "contas"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "null",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": []
        },
        {
          "id": "1689ac69-07b3-4367-a99e-1e5fd9b53d3e",
          "name": "GET /api/contas/{id}",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{token}}",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/contas/{id}",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "contas",
                "{id}"
              ]
            }
          },
          "response": []
        },
        {
          "id": "59a44ffb-e606-4fea-83ea-767dcfc6d30d",
          "name": "PUT /api/contas/{id}",
          "request": {
            "method": "PUT",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{token}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/contas/{id}",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "contas",
                "{id}"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "null",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": []
        },
        {
          "id": "50c2704b-6b9f-45ca-b706-b1b42692af9e",
          "name": "DELETE /api/contas/{id}",
          "request": {
            "method": "DELETE",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{token}}",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/contas/{id}",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "contas",
                "{id}"
              ]
            }
          },
          "response": []
        },
        {
          "id": "33791d88-bcd3-44fa-bc70-4588880d1737",
          "name": "GET /api/contas/recuperar-quantidade",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{token}}",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/contas/recuperar-quantidade",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "contas",
                "recuperar-quantidade"
              ]
            }
          },
          "response": []
        },
        {
          "id": "04e39317-0c4b-47c7-a974-091dda8adb44",
          "name": "GET /api/contas-pagar-receber",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{token}}",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/contas-pagar-receber",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "contas-pagar-receber"
              ],
              "query": [
                {
                  "key": "property",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "orderBy",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "pageNumber",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "pageSize",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "situacao",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "documentoId",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "observacao",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "pessoaId",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "pessoaVendedorId",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "tipoPesquisaData",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "dataInicial",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "dataFinal",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "venda",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "ativoPassivo",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "adiantamento",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "vinculado",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "projetoId",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "titulosDescontados",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "tipo",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "empresaId",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "origem",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "contaId",
                  "value": "",
                  "description": "",
                  "disabled": true
                }
              ]
            }
          },
          "response": []
        },
        {
          "id": "e7447f4d-ead0-4459-8a53-17267fefab7a",
          "name": "GET /api/contas-pagar-receber/{id}",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{token}}",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/contas-pagar-receber/{id}",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "contas-pagar-receber",
                "{id}"
              ]
            }
          },
          "response": []
        },
        {
          "id": "50a3e43d-d82c-4922-b07b-da25c83fd3e3",
          "name": "POST /api/contas-pagar-receber/many",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{token}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/contas-pagar-receber/many",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "contas-pagar-receber",
                "many"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "[\n  null\n]",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": []
        },
        {
          "id": "7172af94-2f78-4c24-9022-ef510ae0bddd",
          "name": "PUT /api/contas-pagar-receber/{id}/estornar-parcela",
          "request": {
            "method": "PUT",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{token}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/contas-pagar-receber/{id}/estornar-parcela",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "contas-pagar-receber",
                "{id}",
                "estornar-parcela"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "null",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": []
        },
        {
          "id": "b0df4adc-e7e4-46f7-96dc-d310ba44c05c",
          "name": "PUT /api/contas-pagar-receber/{grupo}/estornar-conta",
          "request": {
            "method": "PUT",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{token}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/contas-pagar-receber/{grupo}/estornar-conta",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "contas-pagar-receber",
                "{grupo}",
                "estornar-conta"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "null",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": []
        },
        {
          "id": "64988d60-ae0a-49cd-adfb-4967b0a9a9e4",
          "name": "PUT /api/contas-pagar-receber/{grupo}/gerar-boleto",
          "request": {
            "method": "PUT",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{token}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/contas-pagar-receber/{grupo}/gerar-boleto",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "contas-pagar-receber",
                "{grupo}",
                "gerar-boleto"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "null",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": []
        },
        {
          "id": "bda59313-0bde-4a17-acaf-4ee1fea0a901",
          "name": "PUT /api/contas-pagar-receber/{notaFiscalId}/gerar-boleto-por-nota-fiscal",
          "request": {
            "method": "PUT",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{token}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/contas-pagar-receber/{notaFiscalId}/gerar-boleto-por-nota-fiscal",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "contas-pagar-receber",
                "{notaFiscalId}",
                "gerar-boleto-por-nota-fiscal"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "null",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": []
        },
        {
          "id": "940f9562-361e-4ea5-92b7-ea77c75e14e4",
          "name": "PUT /api/contas-pagar-receber/{contaId}/enviar-email",
          "request": {
            "method": "PUT",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{token}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/contas-pagar-receber/{contaId}/enviar-email",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "contas-pagar-receber",
                "{contaId}",
                "enviar-email"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "[\n  0\n]",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": []
        },
        {
          "id": "a2519a54-f6c5-42d5-ad42-ddb86c2044f5",
          "name": "PUT /api/contas-pagar-receber/{empresaId}/{contaId}/processar-retorno",
          "request": {
            "method": "PUT",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{token}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/contas-pagar-receber/{empresaId}/{contaId}/processar-retorno",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "contas-pagar-receber",
                "{empresaId}",
                "{contaId}",
                "processar-retorno"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "null",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": []
        },
        {
          "id": "7e1d7d6a-f5fb-43de-9342-0c5bc47412ca",
          "name": "GET /api/contas-pagar-receber/{contaId}/recuperar-arquivo/{nomeArquivo}",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{token}}",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/contas-pagar-receber/{contaId}/recuperar-arquivo/{nomeArquivo}",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "contas-pagar-receber",
                "{contaId}",
                "recuperar-arquivo",
                "{nomeArquivo}"
              ]
            }
          },
          "response": []
        },
        {
          "id": "95b2c87a-4a7e-4053-870a-c0d020a77996",
          "name": "GET /api/contas-pagar-receber/recuperar-por-grupo/{grupo}",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{token}}",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/contas-pagar-receber/recuperar-por-grupo/{grupo}",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "contas-pagar-receber",
                "recuperar-por-grupo",
                "{grupo}"
              ]
            }
          },
          "response": []
        },
        {
          "id": "76af4a94-a19d-40c4-b1a1-c324daa8e3e2",
          "name": "POST /api/contas-pagar-receber/baixar",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{token}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/contas-pagar-receber/baixar",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "contas-pagar-receber",
                "baixar"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "null",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": []
        },
        {
          "id": "6824df8d-c0cd-4b0c-b162-d1964fffd90b",
          "name": "GET /api/contas-pagar-receber/recuperar-quantidade",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{token}}",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/contas-pagar-receber/recuperar-quantidade",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "contas-pagar-receber",
                "recuperar-quantidade"
              ]
            }
          },
          "response": []
        },
        {
          "id": "3d51b108-6130-4f99-bc45-58c58cb7235a",
          "name": "POST /api/contas-pagar-receber/salvar-custodia",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{token}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/contas-pagar-receber/salvar-custodia",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "contas-pagar-receber",
                "salvar-custodia"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "null",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": []
        },
        {
          "id": "a6032632-4ca8-4ad9-94b1-b7ef17c1c0ec",
          "name": "GET /api/contas-pagar-receber/{id}/imprimir-recibo",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{token}}",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/contas-pagar-receber/{id}/imprimir-recibo",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "contas-pagar-receber",
                "{id}",
                "imprimir-recibo"
              ]
            }
          },
          "response": []
        },
        {
          "id": "63befdf4-9333-486f-b386-7914726289be",
          "name": "POST /api/contas-pagar-receber/editar-conta",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{token}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/contas-pagar-receber/editar-conta",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "contas-pagar-receber",
                "editar-conta"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "null",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": []
        },
        {
          "id": "e3b70724-be54-4869-908e-e7c5c156af5f",
          "name": "POST /api/contas-pagar-receber/editar-parcela",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{token}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/contas-pagar-receber/editar-parcela",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "contas-pagar-receber",
                "editar-parcela"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "null",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": []
        },
        {
          "id": "f959b817-fb9e-41a7-8d7b-1fb6e60c8e43",
          "name": "POST /api/contas-pagar-receber/many-pagar",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{token}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/contas-pagar-receber/many-pagar",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "contas-pagar-receber",
                "many-pagar"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "[\n  0\n]",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": []
        },
        {
          "id": "dfdaab8e-9e01-462b-8648-af4e5ef34a00",
          "name": "POST /api/contas-pagar-receber/baixar-descontado",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{token}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/contas-pagar-receber/baixar-descontado",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "contas-pagar-receber",
                "baixar-descontado"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "[\n  0\n]",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": []
        },
        {
          "id": "5ca6714a-9ba9-4696-8397-ae9f2e40ebf6",
          "name": "POST /api/contas-pagar-receber/reembolsar",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{token}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/contas-pagar-receber/reembolsar",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "contas-pagar-receber",
                "reembolsar"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "[\n  0\n]",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": []
        },
        {
          "id": "3fe7e59f-293c-41cc-ac2e-c75493ca95ef",
          "name": "GET /api/contas-pagar-receber/consulta-valor-vencido/{pessoaId}",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{token}}",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/contas-pagar-receber/consulta-valor-vencido/{pessoaId}",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "contas-pagar-receber",
                "consulta-valor-vencido",
                "{pessoaId}"
              ]
            }
          },
          "response": []
        },
        {
          "id": "68047638-7773-46f9-917d-3303435f578d",
          "name": "GET /api/contas-pagar-receber/gerar-relatorio",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{token}}",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/contas-pagar-receber/gerar-relatorio",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "contas-pagar-receber",
                "gerar-relatorio"
              ],
              "query": [
                {
                  "key": "situacao",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "documentoId",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "observacao",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "pessoaId",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "pessoaVendedorId",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "tipoPesquisaData",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "dataInicial",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "dataFinal",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "venda",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "ativoPassivo",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "adiantamento",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "vinculado",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "projetoId",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "titulosDescontados",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "tipo",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "empresaId",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "origem",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "contaId",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "fromCustodia",
                  "value": "",
                  "description": "",
                  "disabled": true
                }
              ]
            }
          },
          "response": []
        },
        {
          "id": "1cf345e4-84d6-4127-b51f-e2719d7b06a9",
          "name": "GET /api/contas-pagar-receber/gerar-relatorio-despesa",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{token}}",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/contas-pagar-receber/gerar-relatorio-despesa",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "contas-pagar-receber",
                "gerar-relatorio-despesa"
              ],
              "query": [
                {
                  "key": "situacao",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "documentoId",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "observacao",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "pessoaId",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "pessoaVendedorId",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "tipoPesquisaData",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "dataInicial",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "dataFinal",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "venda",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "ativoPassivo",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "adiantamento",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "vinculado",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "projetoId",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "titulosDescontados",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "tipo",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "empresaId",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "origem",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "contaId",
                  "value": "",
                  "description": "",
                  "disabled": true
                }
              ]
            }
          },
          "response": []
        },
        {
          "id": "d8d7a2ff-825d-4e76-8505-fe418b9cf0d7",
          "name": "GET /api/contas-pagar-receber/gerar-csv-despesa",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{token}}",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/contas-pagar-receber/gerar-csv-despesa",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "contas-pagar-receber",
                "gerar-csv-despesa"
              ],
              "query": [
                {
                  "key": "situacao",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "documentoId",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "observacao",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "pessoaId",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "pessoaVendedorId",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "tipoPesquisaData",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "dataInicial",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "dataFinal",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "venda",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "ativoPassivo",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "adiantamento",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "vinculado",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "projetoId",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "titulosDescontados",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "tipo",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "empresaId",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "origem",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "contaId",
                  "value": "",
                  "description": "",
                  "disabled": true
                }
              ]
            }
          },
          "response": []
        },
        {
          "id": "12c93949-fd1d-4c46-861a-816354a98b51",
          "name": "GET /api/contas-pagar-receber/recuperar-comissao/{ids}",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{token}}",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/contas-pagar-receber/recuperar-comissao/{ids}",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "contas-pagar-receber",
                "recuperar-comissao",
                "{ids}"
              ]
            }
          },
          "response": []
        }
      ]
    },
    {
      "id": "657650b8-f46c-4129-afea-89b97c233b2d",
      "name": "Financeiro",
      "item": [
        {
          "id": "99793ec5-e291-4b21-a808-a37a128b3c62",
          "name": "GET /api/bancos",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{token}}",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/bancos",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "bancos"
              ],
              "query": [
                {
                  "key": "property",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "orderBy",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "pageNumber",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "pageSize",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "nome",
                  "value": "",
                  "description": "",
                  "disabled": true
                }
              ]
            }
          },
          "response": []
        },
        {
          "id": "a7025d52-256c-424e-8877-15bc2ae93951",
          "name": "POST /api/bancos",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{token}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/bancos",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "bancos"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "null",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": []
        },
        {
          "id": "b47f44d7-0bec-45f8-be81-ecc335866a3a",
          "name": "GET /api/bancos/{id}",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{token}}",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/bancos/{id}",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "bancos",
                "{id}"
              ]
            }
          },
          "response": []
        },
        {
          "id": "010fb3b4-b73d-4f7f-a867-27df241431c7",
          "name": "PUT /api/bancos/{id}",
          "request": {
            "method": "PUT",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{token}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/bancos/{id}",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "bancos",
                "{id}"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "null",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": []
        },
        {
          "id": "54fe553a-508b-4bd5-a68c-868b4063a3d7",
          "name": "DELETE /api/bancos/{id}",
          "request": {
            "method": "DELETE",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{token}}",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/bancos/{id}",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "bancos",
                "{id}"
              ]
            }
          },
          "response": []
        },
        {
          "id": "12a50219-199d-45d5-b9dc-a9cc0e57330d",
          "name": "GET /api/comissoes",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{token}}",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/comissoes",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "comissoes"
              ],
              "query": [
                {
                  "key": "property",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "orderBy",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "pageNumber",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "pageSize",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "empresaId",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "vendedorId",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "tipo",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "dataInicial",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "dataFinal",
                  "value": "",
                  "description": "",
                  "disabled": true
                }
              ]
            }
          },
          "response": []
        },
        {
          "id": "47f042e9-b300-4253-a485-950cb2721321",
          "name": "GET /api/comissoes/gerar-relatorio",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{token}}",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/comissoes/gerar-relatorio",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "comissoes",
                "gerar-relatorio"
              ],
              "query": [
                {
                  "key": "property",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "orderBy",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "pageNumber",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "pageSize",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "empresaId",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "vendedorId",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "tipo",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "dataInicial",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "dataFinal",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "excel",
                  "value": "",
                  "description": "",
                  "disabled": true
                }
              ]
            }
          },
          "response": []
        },
        {
          "id": "8897647b-8e84-4f79-97c1-c795a2e0d519",
          "name": "GET /api/condicoes-pagamento",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{token}}",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/condicoes-pagamento",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "condicoes-pagamento"
              ]
            }
          },
          "response": []
        },
        {
          "id": "3484a9f6-f625-4415-8d54-72665432ad20",
          "name": "POST /api/condicoes-pagamento",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{token}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/condicoes-pagamento",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "condicoes-pagamento"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "null",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": []
        },
        {
          "id": "530a3afc-a1ab-49c9-bd5a-d38bcf5e5312",
          "name": "GET /api/condicoes-pagamento/{id}",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{token}}",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/condicoes-pagamento/{id}",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "condicoes-pagamento",
                "{id}"
              ]
            }
          },
          "response": []
        },
        {
          "id": "44b3c25c-a562-4687-b8e5-d5abd8a9b944",
          "name": "PUT /api/condicoes-pagamento/{id}",
          "request": {
            "method": "PUT",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{token}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/condicoes-pagamento/{id}",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "condicoes-pagamento",
                "{id}"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "null",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": []
        },
        {
          "id": "dbb5b9dd-8f6c-4a7e-ba15-6da8733b8928",
          "name": "DELETE /api/condicoes-pagamento/{id}",
          "request": {
            "method": "DELETE",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{token}}",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/condicoes-pagamento/{id}",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "condicoes-pagamento",
                "{id}"
              ]
            }
          },
          "response": []
        },
        {
          "id": "2682377b-ef08-4d6b-8eb5-f3fb2955bde9",
          "name": "GET /api/formas-pagamento",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{token}}",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/formas-pagamento",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "formas-pagamento"
              ]
            }
          },
          "response": []
        },
        {
          "id": "db33abe8-de70-456d-b812-f3b6757c442d",
          "name": "POST /api/formas-pagamento",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{token}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/formas-pagamento",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "formas-pagamento"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "null",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": []
        },
        {
          "id": "d67f2592-8074-4e88-9f09-7002d8f6a6df",
          "name": "GET /api/formas-pagamento/{id}",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{token}}",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/formas-pagamento/{id}",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "formas-pagamento",
                "{id}"
              ]
            }
          },
          "response": []
        },
        {
          "id": "aabc0d37-022c-4a5d-bc32-55fb50af7cbd",
          "name": "PUT /api/formas-pagamento/{id}",
          "request": {
            "method": "PUT",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{token}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/formas-pagamento/{id}",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "formas-pagamento",
                "{id}"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "null",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": []
        },
        {
          "id": "768e8d49-4439-4476-abd2-50852fc4a03d",
          "name": "DELETE /api/formas-pagamento/{id}",
          "request": {
            "method": "DELETE",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{token}}",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/formas-pagamento/{id}",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "formas-pagamento",
                "{id}"
              ]
            }
          },
          "response": []
        },
        {
          "id": "303b0da9-8940-4ca3-a7a7-05bfdc13b5c2",
          "name": "GET /api/precos",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{token}}",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/precos",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "precos"
              ]
            }
          },
          "response": []
        },
        {
          "id": "34411063-4fe6-4fc6-a0bd-f0a895762ed0",
          "name": "POST /api/precos",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{token}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/precos",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "precos"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "null",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": []
        },
        {
          "id": "563bc363-c9e1-40d1-a8f6-c2f91a893c75",
          "name": "GET /api/precos/{id}",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{token}}",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/precos/{id}",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "precos",
                "{id}"
              ]
            }
          },
          "response": []
        },
        {
          "id": "266e7b65-8fca-4070-8e23-16b87da890e8",
          "name": "PUT /api/precos/{id}",
          "request": {
            "method": "PUT",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{token}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/precos/{id}",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "precos",
                "{id}"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "null",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": []
        },
        {
          "id": "db2b825b-7542-4248-af0c-200f03972f2b",
          "name": "GET /api/tabelas-precos",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{token}}",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/tabelas-precos",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "tabelas-precos"
              ],
              "query": [
                {
                  "key": "property",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "orderBy",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "pageNumber",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "pageSize",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "descricao",
                  "value": "",
                  "description": "",
                  "disabled": true
                }
              ]
            }
          },
          "response": []
        },
        {
          "id": "278bce65-ed84-4c49-a4cb-077767aea984",
          "name": "POST /api/tabelas-precos",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{token}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/tabelas-precos",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "tabelas-precos"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "null",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": []
        },
        {
          "id": "6ac34090-fd8a-4211-8d01-93a2628fb220",
          "name": "GET /api/tabelas-precos/{id}",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{token}}",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/tabelas-precos/{id}",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "tabelas-precos",
                "{id}"
              ]
            }
          },
          "response": []
        },
        {
          "id": "c51eb98c-c5b1-4607-a42f-8c161573b5e5",
          "name": "PUT /api/tabelas-precos/{id}",
          "request": {
            "method": "PUT",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{token}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/tabelas-precos/{id}",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "tabelas-precos",
                "{id}"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "null",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": []
        },
        {
          "id": "3405a248-bb9d-47af-a526-b1256fce49eb",
          "name": "DELETE /api/tabelas-precos/{id}",
          "request": {
            "method": "DELETE",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{token}}",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/tabelas-precos/{id}",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "tabelas-precos",
                "{id}"
              ]
            }
          },
          "response": []
        },
        {
          "id": "fe7b7aac-f30a-40bd-bb7a-8c1abe7a5813",
          "name": "GET /api/tabelas-precos/{tabelaPrecoId}/{produtoServicoId}",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{token}}",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/tabelas-precos/{tabelaPrecoId}/{produtoServicoId}",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "tabelas-precos",
                "{tabelaPrecoId}",
                "{produtoServicoId}"
              ]
            }
          },
          "response": []
        },
        {
          "id": "a543d085-8975-49e4-a0ce-8a43e8d76f11",
          "name": "GET /api/transferencias",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{token}}",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/transferencias",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "transferencias"
              ],
              "query": [
                {
                  "key": "property",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "orderBy",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "pageNumber",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "pageSize",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "dataInicial",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "dataFinal",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "empresaId",
                  "value": "",
                  "description": "",
                  "disabled": true
                }
              ]
            }
          },
          "response": []
        },
        {
          "id": "e31ab21d-3aa3-4b0d-83e7-e58cbe76d72d",
          "name": "POST /api/transferencias",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{token}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/transferencias",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "transferencias"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "null",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": []
        },
        {
          "id": "7ecd6cc4-d3d2-42e8-a730-1326aa0c5431",
          "name": "GET /api/transferencias/{id}",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{token}}",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/transferencias/{id}",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "transferencias",
                "{id}"
              ]
            }
          },
          "response": []
        },
        {
          "id": "e230f73c-1e59-4bac-b28c-bfa07a885938",
          "name": "PUT /api/transferencias/{id}",
          "request": {
            "method": "PUT",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{token}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/transferencias/{id}",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "transferencias",
                "{id}"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "null",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": []
        },
        {
          "id": "63b20f10-1682-4157-a425-5740f555c8be",
          "name": "DELETE /api/transferencias/{id}",
          "request": {
            "method": "DELETE",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{token}}",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/transferencias/{id}",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "transferencias",
                "{id}"
              ]
            }
          },
          "response": []
        },
        {
          "id": "dfa89ca3-22cd-43ad-ae9f-9fd4658aa8fa",
          "name": "GET /api/transferencias/gerar-relatorio",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{token}}",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/transferencias/gerar-relatorio",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "transferencias",
                "gerar-relatorio"
              ],
              "query": [
                {
                  "key": "dataInicial",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "dataFinal",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "empresaId",
                  "value": "",
                  "description": "",
                  "disabled": true
                }
              ]
            }
          },
          "response": []
        }
      ]
    },
    {
      "id": "5e3f82a4-7f5f-4d3f-90f4-c05fa43767b3",
      "name": "Fiscal",
      "item": [
        {
          "id": "b350178e-d516-4aa0-9bc8-3f97dc3de6d6",
          "name": "GET /api/ibpts",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{token}}",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/ibpts",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "ibpts"
              ],
              "query": [
                {
                  "key": "property",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "orderBy",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "pageNumber",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "pageSize",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "codigo",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "descricao",
                  "value": "",
                  "description": "",
                  "disabled": true
                }
              ]
            }
          },
          "response": []
        },
        {
          "id": "8b159af1-c181-40a5-abbe-8e57ea8782f4",
          "name": "POST /api/ibpts",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{token}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/ibpts",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "ibpts"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "null",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": []
        },
        {
          "id": "d146df8c-b668-4b25-ab5b-efe68a1c0c80",
          "name": "GET /api/ibpts/{id}",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{token}}",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/ibpts/{id}",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "ibpts",
                "{id}"
              ]
            }
          },
          "response": []
        },
        {
          "id": "239984d6-c862-4ccc-b7b6-91caf33d8c66",
          "name": "PUT /api/ibpts/{id}",
          "request": {
            "method": "PUT",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{token}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/ibpts/{id}",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "ibpts",
                "{id}"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "null",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": []
        },
        {
          "id": "292f8917-8cd8-4620-adda-920c59f04a56",
          "name": "DELETE /api/ibpts/{id}",
          "request": {
            "method": "DELETE",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{token}}",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/ibpts/{id}",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "ibpts",
                "{id}"
              ]
            }
          },
          "response": []
        },
        {
          "id": "548f5e70-2bb5-4fa1-b35c-ccb8916c723c",
          "name": "POST /api/ibpts/importar",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{token}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/ibpts/importar",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "ibpts",
                "importar"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "null",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": []
        },
        {
          "id": "72ab61af-99f3-4e60-ae09-20256ca54704",
          "name": "GET /api/naturezas-operacao",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{token}}",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/naturezas-operacao",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "naturezas-operacao"
              ],
              "query": [
                {
                  "key": "property",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "orderBy",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "pageNumber",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "pageSize",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "descricao",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "tipo",
                  "value": "",
                  "description": "",
                  "disabled": true
                }
              ]
            }
          },
          "response": []
        },
        {
          "id": "583297c6-659b-4292-8c1e-c471e9a2a252",
          "name": "POST /api/naturezas-operacao",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{token}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/naturezas-operacao",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "naturezas-operacao"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "null",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": []
        },
        {
          "id": "1f3ea6ad-7eab-4263-854d-d81c9c52d751",
          "name": "GET /api/naturezas-operacao/{id}",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{token}}",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/naturezas-operacao/{id}",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "naturezas-operacao",
                "{id}"
              ]
            }
          },
          "response": []
        },
        {
          "id": "2e2dad8d-b0ba-4a4e-9b93-851045d79d32",
          "name": "PUT /api/naturezas-operacao/{id}",
          "request": {
            "method": "PUT",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{token}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/naturezas-operacao/{id}",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "naturezas-operacao",
                "{id}"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "null",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": []
        },
        {
          "id": "14aa20da-9e10-4e8a-9290-cb5d50e05fc7",
          "name": "DELETE /api/naturezas-operacao/{id}",
          "request": {
            "method": "DELETE",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{token}}",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/naturezas-operacao/{id}",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "naturezas-operacao",
                "{id}"
              ]
            }
          },
          "response": []
        },
        {
          "id": "bd05d960-f4f6-49af-ba93-45c0e4444954",
          "name": "GET /api/notas-fiscais",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{token}}",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/notas-fiscais",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "notas-fiscais"
              ],
              "query": [
                {
                  "key": "property",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "orderBy",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "pageNumber",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "pageSize",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "pessoaId",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "tipoPesquisaData",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "dataInicial",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "dataFinal",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "situacao",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "numero",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "empresaId",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "tipo",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "serie",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "modelo",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "vendedorId",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "produtoId",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "cfops",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "exibirItens",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "exibirFaturas",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "tipoRelatorio",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "excel",
                  "value": "",
                  "description": "",
                  "disabled": true
                }
              ]
            }
          },
          "response": []
        },
        {
          "id": "111d2392-1c1a-4213-aede-ec44b553fde8",
          "name": "POST /api/notas-fiscais",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{token}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/notas-fiscais",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "notas-fiscais"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "null",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": []
        },
        {
          "id": "58dd9e26-b2c4-4176-91dd-c3911cdb9229",
          "name": "GET /api/notas-fiscais/{id}",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{token}}",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/notas-fiscais/{id}",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "notas-fiscais",
                "{id}"
              ]
            }
          },
          "response": []
        },
        {
          "id": "05bca6b8-047a-4873-9887-70c044e7a0f3",
          "name": "PUT /api/notas-fiscais/{id}",
          "request": {
            "method": "PUT",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{token}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/notas-fiscais/{id}",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "notas-fiscais",
                "{id}"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "null",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": []
        },
        {
          "id": "5ba3d1ba-e597-4dc4-8b66-11363d5d0acf",
          "name": "DELETE /api/notas-fiscais/{id}",
          "request": {
            "method": "DELETE",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{token}}",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/notas-fiscais/{id}",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "notas-fiscais",
                "{id}"
              ]
            }
          },
          "response": []
        },
        {
          "id": "ae4354af-3f6f-49b6-ac28-3400a02e7c8e",
          "name": "GET /api/notas-fiscais/recuperar-quantidade",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{token}}",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/notas-fiscais/recuperar-quantidade",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "notas-fiscais",
                "recuperar-quantidade"
              ]
            }
          },
          "response": []
        },
        {
          "id": "d482196d-2d61-45cb-8d14-644d66464841",
          "name": "GET /api/notas-fiscais/{id}/gerar",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{token}}",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/notas-fiscais/{id}/gerar",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "notas-fiscais",
                "{id}",
                "gerar"
              ]
            }
          },
          "response": []
        },
        {
          "id": "e12a1efc-3e46-4357-8d59-d9bd1525068f",
          "name": "PUT /api/notas-fiscais/{id}/transmitir",
          "request": {
            "method": "PUT",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{token}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/notas-fiscais/{id}/transmitir",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "notas-fiscais",
                "{id}",
                "transmitir"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "null",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": []
        },
        {
          "id": "81aa67d7-b96d-4906-8b15-bef6d618b5ac",
          "name": "PUT /api/notas-fiscais/{id}/cancelar",
          "request": {
            "method": "PUT",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{token}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/notas-fiscais/{id}/cancelar",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "notas-fiscais",
                "{id}",
                "cancelar"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "null",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": []
        },
        {
          "id": "01b21739-58b8-441c-8b36-29c8ac0a61d1",
          "name": "PUT /api/notas-fiscais/{id}/enviar-email",
          "request": {
            "method": "PUT",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{token}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/notas-fiscais/{id}/enviar-email",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "notas-fiscais",
                "{id}",
                "enviar-email"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "null",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": []
        },
        {
          "id": "4ed3e309-72fc-4db8-a525-b09819729a79",
          "name": "GET /api/notas-fiscais/{id}/imprimir",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{token}}",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/notas-fiscais/{id}/imprimir",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "notas-fiscais",
                "{id}",
                "imprimir"
              ]
            }
          },
          "response": []
        },
        {
          "id": "75e6c01d-576f-4ed4-ba26-8f8047e75b16",
          "name": "GET /api/notas-fiscais/{id}/imprimir-carta",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{token}}",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/notas-fiscais/{id}/imprimir-carta",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "notas-fiscais",
                "{id}",
                "imprimir-carta"
              ]
            }
          },
          "response": []
        },
        {
          "id": "2bc8ce34-31c9-4eb2-8591-46466a8c2242",
          "name": "GET /api/notas-fiscais/{id}/consultar",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{token}}",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/notas-fiscais/{id}/consultar",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "notas-fiscais",
                "{id}",
                "consultar"
              ]
            }
          },
          "response": []
        },
        {
          "id": "d9a3342c-e87b-4d8a-b53f-a565d94221e1",
          "name": "PUT /api/notas-fiscais/{id}/inutilizar",
          "request": {
            "method": "PUT",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{token}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/notas-fiscais/{id}/inutilizar",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "notas-fiscais",
                "{id}",
                "inutilizar"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "null",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": []
        },
        {
          "id": "0e3defa6-2a50-4e1d-9a92-c335fddcd8a4",
          "name": "PUT /api/notas-fiscais/{id}/enviar-carta",
          "request": {
            "method": "PUT",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{token}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/notas-fiscais/{id}/enviar-carta",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "notas-fiscais",
                "{id}",
                "enviar-carta"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "null",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": []
        },
        {
          "id": "d533ba09-e594-4371-90bb-d0491a587007",
          "name": "GET /api/notas-fiscais/{id}/recuperar-xml",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{token}}",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/notas-fiscais/{id}/recuperar-xml",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "notas-fiscais",
                "{id}",
                "recuperar-xml"
              ]
            }
          },
          "response": []
        },
        {
          "id": "ef449a5d-f7a6-45c4-a46d-62ad28d4a751",
          "name": "POST /api/notas-fiscais/importar-xml",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{token}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/notas-fiscais/importar-xml",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "notas-fiscais",
                "importar-xml"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "null",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": []
        },
        {
          "id": "7cc67c64-e25d-42dc-9f34-249151f4bfb7",
          "name": "POST /api/notas-fiscais/importar-xml-manifesto/{manifestoId}",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{token}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/notas-fiscais/importar-xml-manifesto/{manifestoId}",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "notas-fiscais",
                "importar-xml-manifesto",
                "{manifestoId}"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "null",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": []
        },
        {
          "id": "5523361d-bbe4-47b7-8b43-1fa630528260",
          "name": "PUT /api/notas-fiscais/{id}/faturar",
          "request": {
            "method": "PUT",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{token}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/notas-fiscais/{id}/faturar",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "notas-fiscais",
                "{id}",
                "faturar"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "null",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": []
        },
        {
          "id": "9c03287e-cbdb-4e4d-a2d6-f08248c58873",
          "name": "PUT /api/notas-fiscais/{id}/retornar",
          "request": {
            "method": "PUT",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{token}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/notas-fiscais/{id}/retornar",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "notas-fiscais",
                "{id}",
                "retornar"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "null",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": []
        },
        {
          "id": "4dfceaed-798f-4fdc-a843-ee81f4b585b3",
          "name": "PUT /api/notas-fiscais/{id}/alterar-emissao-propria",
          "request": {
            "method": "PUT",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{token}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/notas-fiscais/{id}/alterar-emissao-propria",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "notas-fiscais",
                "{id}",
                "alterar-emissao-propria"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "null",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": []
        },
        {
          "id": "48167561-1c1a-4fb9-ac47-31bb960773d6",
          "name": "GET /api/notas-fiscais/gerar-relatorio",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{token}}",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/notas-fiscais/gerar-relatorio",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "notas-fiscais",
                "gerar-relatorio"
              ],
              "query": [
                {
                  "key": "property",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "orderBy",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "pageNumber",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "pageSize",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "pessoaId",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "tipoPesquisaData",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "dataInicial",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "dataFinal",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "situacao",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "numero",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "empresaId",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "tipo",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "serie",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "modelo",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "vendedorId",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "produtoId",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "cfops",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "exibirItens",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "exibirFaturas",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "tipoRelatorio",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "excel",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "ordenacao",
                  "value": "",
                  "description": "",
                  "disabled": true
                }
              ]
            }
          },
          "response": []
        },
        {
          "id": "931d83ea-05a7-47e8-845a-535529bd8cec",
          "name": "GET /api/notas-fiscais/gerar-relatorio-imposto",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{token}}",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/notas-fiscais/gerar-relatorio-imposto",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "notas-fiscais",
                "gerar-relatorio-imposto"
              ],
              "query": [
                {
                  "key": "dataInicial",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "dataFinal",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "empresaId",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "excel",
                  "value": "",
                  "description": "",
                  "disabled": true
                }
              ]
            }
          },
          "response": []
        },
        {
          "id": "83ab56e4-2406-43b2-92db-90e1d0126f49",
          "name": "GET /api/notas-fiscais/recuperar-arquivo-mes",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{token}}",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/notas-fiscais/recuperar-arquivo-mes",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "notas-fiscais",
                "recuperar-arquivo-mes"
              ],
              "query": [
                {
                  "key": "dataInicial",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "dataFinal",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "empresaId",
                  "value": "",
                  "description": "",
                  "disabled": true
                }
              ]
            }
          },
          "response": []
        },
        {
          "id": "a17baf95-ae53-47f6-b1a5-6c854831baf6",
          "name": "GET /api/regras-tributarias",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{token}}",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/regras-tributarias",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "regras-tributarias"
              ],
              "query": [
                {
                  "key": "property",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "orderBy",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "pageNumber",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "pageSize",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "descricao",
                  "value": "",
                  "description": "",
                  "disabled": true
                }
              ]
            }
          },
          "response": []
        },
        {
          "id": "7b1cc82f-8d6a-4a57-959d-eed20a2adf83",
          "name": "POST /api/regras-tributarias",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{token}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/regras-tributarias",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "regras-tributarias"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "null",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": []
        },
        {
          "id": "0d22d43c-7263-4240-aeb0-11a9c613bc75",
          "name": "GET /api/regras-tributarias/{id}",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{token}}",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/regras-tributarias/{id}",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "regras-tributarias",
                "{id}"
              ]
            }
          },
          "response": []
        },
        {
          "id": "85e0593f-1d85-4f11-98b6-5232f9b9ff46",
          "name": "PUT /api/regras-tributarias/{id}",
          "request": {
            "method": "PUT",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{token}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/regras-tributarias/{id}",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "regras-tributarias",
                "{id}"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "null",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": []
        },
        {
          "id": "1bcb7f28-8dc3-41c2-836e-4b13633fa892",
          "name": "DELETE /api/regras-tributarias/{id}",
          "request": {
            "method": "DELETE",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{token}}",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/regras-tributarias/{id}",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "regras-tributarias",
                "{id}"
              ]
            }
          },
          "response": []
        },
        {
          "id": "514101a0-abe0-4e77-89b2-35d4501e6cfc",
          "name": "GET /api/speds-fiscais",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{token}}",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/speds-fiscais",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "speds-fiscais"
              ],
              "query": [
                {
                  "key": "property",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "orderBy",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "pageNumber",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "pageSize",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "empresaId",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "mes",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "ano",
                  "value": "",
                  "description": "",
                  "disabled": true
                }
              ]
            }
          },
          "response": []
        },
        {
          "id": "fd06a505-9cb3-4f43-bddb-bb60f314ebf2",
          "name": "POST /api/speds-fiscais",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{token}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/speds-fiscais",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "speds-fiscais"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "null",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": []
        },
        {
          "id": "bc0556d8-549c-4e96-b709-272e977d7c6b",
          "name": "GET /api/speds-fiscais/{id}",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{token}}",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/speds-fiscais/{id}",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "speds-fiscais",
                "{id}"
              ]
            }
          },
          "response": []
        },
        {
          "id": "93a07ada-e9f5-406c-8108-12a71981f73f",
          "name": "PUT /api/speds-fiscais/{id}",
          "request": {
            "method": "PUT",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{token}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/speds-fiscais/{id}",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "speds-fiscais",
                "{id}"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "null",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": []
        },
        {
          "id": "0e12980c-fed9-4c06-9d39-2e680eed2d19",
          "name": "DELETE /api/speds-fiscais/{id}",
          "request": {
            "method": "DELETE",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{token}}",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/speds-fiscais/{id}",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "speds-fiscais",
                "{id}"
              ]
            }
          },
          "response": []
        },
        {
          "id": "9f06febc-f6bc-4949-9b0a-941918b33af5",
          "name": "PUT /api/speds-fiscais/{id}/gerar",
          "request": {
            "method": "PUT",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{token}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/speds-fiscais/{id}/gerar",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "speds-fiscais",
                "{id}",
                "gerar"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "null",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": []
        },
        {
          "id": "dd18e092-0193-4903-8915-095cb97166d8",
          "name": "GET /api/speds-fiscais/{id}/recuperar-arquivo",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{token}}",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/speds-fiscais/{id}/recuperar-arquivo",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "speds-fiscais",
                "{id}",
                "recuperar-arquivo"
              ]
            }
          },
          "response": []
        },
        {
          "id": "30ae3734-4ccb-4c4f-9385-216d1cb1c409",
          "name": "GET /api/tributacoes",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{token}}",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/tributacoes",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "tributacoes"
              ],
              "query": [
                {
                  "key": "property",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "orderBy",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "pageNumber",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "pageSize",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "descricao",
                  "value": "",
                  "description": "",
                  "disabled": true
                }
              ]
            }
          },
          "response": []
        },
        {
          "id": "bcbe3714-d8c5-474a-957b-4190491678ba",
          "name": "POST /api/tributacoes",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{token}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/tributacoes",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "tributacoes"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "null",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": []
        },
        {
          "id": "21606f24-27f3-4efe-a628-89858e4a0ec3",
          "name": "GET /api/tributacoes/{id}",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{token}}",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/tributacoes/{id}",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "tributacoes",
                "{id}"
              ]
            }
          },
          "response": []
        },
        {
          "id": "c0f04fb8-d809-4004-8044-509cb0ebfd1e",
          "name": "PUT /api/tributacoes/{id}",
          "request": {
            "method": "PUT",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{token}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/tributacoes/{id}",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "tributacoes",
                "{id}"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "null",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": []
        },
        {
          "id": "4152373c-9052-4c00-a9ae-2a736e6aeae0",
          "name": "DELETE /api/tributacoes/{id}",
          "request": {
            "method": "DELETE",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{token}}",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/tributacoes/{id}",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "tributacoes",
                "{id}"
              ]
            }
          },
          "response": []
        },
        {
          "id": "0e57d7d6-6682-454b-be62-861ef1cf9bad",
          "name": "POST /api/tributacoes/get-taxes",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{token}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/tributacoes/get-taxes",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "tributacoes",
                "get-taxes"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "null",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": []
        }
      ]
    },
    {
      "id": "20d5b730-7c66-4ebc-9480-448f4431ffe6",
      "name": "Estoque",
      "item": [
        {
          "id": "74a0f377-15f1-41ec-8bbf-12c0fad3ea23",
          "name": "GET /api/estoques",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{token}}",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/estoques",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "estoques"
              ],
              "query": [
                {
                  "key": "property",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "orderBy",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "pageNumber",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "pageSize",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "produtoId",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "dataInicial",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "dataFinal",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "empresaId",
                  "value": "",
                  "description": "",
                  "disabled": true
                }
              ]
            }
          },
          "response": []
        },
        {
          "id": "dd04f912-6eda-40ec-852f-a6aba13ee34d",
          "name": "POST /api/estoques",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{token}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/estoques",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "estoques"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "null",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": []
        },
        {
          "id": "96ca67ad-fbd6-4323-bcb2-0a8802c9a243",
          "name": "GET /api/estoques/lotes",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{token}}",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/estoques/lotes",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "estoques",
                "lotes"
              ],
              "query": [
                {
                  "key": "property",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "orderBy",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "pageNumber",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "pageSize",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "produtoId",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "dataInicial",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "dataFinal",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "lote",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "empresaId",
                  "value": "",
                  "description": "",
                  "disabled": true
                }
              ]
            }
          },
          "response": []
        },
        {
          "id": "9eb0d69c-d79b-4386-83c5-507ce1e4d0a5",
          "name": "GET /api/estoques/{id}",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{token}}",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/estoques/{id}",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "estoques",
                "{id}"
              ]
            }
          },
          "response": []
        },
        {
          "id": "206258e9-5a2c-4164-9c99-c1b1aa86b176",
          "name": "DELETE /api/estoques/{id}",
          "request": {
            "method": "DELETE",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{token}}",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/estoques/{id}",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "estoques",
                "{id}"
              ]
            }
          },
          "response": []
        },
        {
          "id": "a2fda871-087c-4275-99a9-aa7010eb03aa",
          "name": "GET /api/estoques/gerar-relatorio-inventario",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{token}}",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/estoques/gerar-relatorio-inventario",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "estoques",
                "gerar-relatorio-inventario"
              ],
              "query": [
                {
                  "key": "data",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "empresaId",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "excel",
                  "value": "",
                  "description": "",
                  "disabled": true
                }
              ]
            }
          },
          "response": []
        },
        {
          "id": "b70278f2-9fea-480d-abf2-2a29cc79841b",
          "name": "GET /api/estoques/gerar-relatorio-lote",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{token}}",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/estoques/gerar-relatorio-lote",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "estoques",
                "gerar-relatorio-lote"
              ],
              "query": [
                {
                  "key": "empresaId",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "dataInicial",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "dataFinal",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "produtoId",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "exibirSomenteComEstoque",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "excel",
                  "value": "",
                  "description": "",
                  "disabled": true
                }
              ]
            }
          },
          "response": []
        },
        {
          "id": "196b9776-4d21-460c-8b21-ea5bf5bebd0f",
          "name": "GET /api/estoques/gerar-relatorio-rastreabilidade",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{token}}",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/estoques/gerar-relatorio-rastreabilidade",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "estoques",
                "gerar-relatorio-rastreabilidade"
              ],
              "query": [
                {
                  "key": "empresaId",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "lote",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "excel",
                  "value": "",
                  "description": "",
                  "disabled": true
                }
              ]
            }
          },
          "response": []
        },
        {
          "id": "52136100-0955-4651-8d3c-0b4038df4646",
          "name": "GET /api/fichas-tecnicas",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{token}}",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/fichas-tecnicas",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "fichas-tecnicas"
              ],
              "query": [
                {
                  "key": "property",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "orderBy",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "pageNumber",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "pageSize",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "gtin",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "codigoInterno",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "nome",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "grupoId",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "subGrupoId",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "tipoItem",
                  "value": "",
                  "description": "",
                  "disabled": true
                }
              ]
            }
          },
          "response": []
        },
        {
          "id": "02550c65-12f1-42d2-96cb-130e8860db1d",
          "name": "GET /api/fichas-tecnicas/{id}",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{token}}",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/fichas-tecnicas/{id}",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "fichas-tecnicas",
                "{id}"
              ]
            }
          },
          "response": []
        },
        {
          "id": "1b0db128-7fee-4e57-a72c-39e82eba45b4",
          "name": "PUT /api/fichas-tecnicas/{id}",
          "request": {
            "method": "PUT",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{token}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/fichas-tecnicas/{id}",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "fichas-tecnicas",
                "{id}"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "null",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": []
        },
        {
          "id": "c0760910-fbb5-4fe7-9b7a-91ea16c4bfdb",
          "name": "PUT /api/fichas-tecnicas/{id}/atualizar-custo",
          "request": {
            "method": "PUT",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{token}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/fichas-tecnicas/{id}/atualizar-custo",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "fichas-tecnicas",
                "{id}",
                "atualizar-custo"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "null",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": []
        },
        {
          "id": "3873f356-ff6b-4433-8bf9-e3f5c2669680",
          "name": "PUT /api/fichas-tecnicas/{id}/atualizar-tabela-preco",
          "request": {
            "method": "PUT",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{token}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/fichas-tecnicas/{id}/atualizar-tabela-preco",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "fichas-tecnicas",
                "{id}",
                "atualizar-tabela-preco"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "null",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": []
        },
        {
          "id": "f561faf1-8fa1-4f87-8b00-c703d47bab0b",
          "name": "GET /api/fichas-tecnicas/{id}/imprimir",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{token}}",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/fichas-tecnicas/{id}/imprimir",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "fichas-tecnicas",
                "{id}",
                "imprimir"
              ]
            }
          },
          "response": []
        },
        {
          "id": "fbe50019-b453-4d42-8194-b035cabbecec",
          "name": "GET /api/grades",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{token}}",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/grades",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "grades"
              ],
              "query": [
                {
                  "key": "property",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "orderBy",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "pageNumber",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "pageSize",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "descricao",
                  "value": "",
                  "description": "",
                  "disabled": true
                }
              ]
            }
          },
          "response": []
        },
        {
          "id": "8f86c8d2-38d1-453d-b627-b90457643fe0",
          "name": "POST /api/grades",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{token}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/grades",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "grades"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "null",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": []
        },
        {
          "id": "9b66fc6c-086c-4aea-866b-713588bf5ae0",
          "name": "GET /api/grades/{id}",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{token}}",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/grades/{id}",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "grades",
                "{id}"
              ]
            }
          },
          "response": []
        },
        {
          "id": "b431356a-d0d7-4301-8528-db47d82f98aa",
          "name": "PUT /api/grades/{id}",
          "request": {
            "method": "PUT",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{token}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/grades/{id}",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "grades",
                "{id}"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "null",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": []
        },
        {
          "id": "46eecec6-a8e0-481c-8f2e-d80a48f94495",
          "name": "DELETE /api/grades/{id}",
          "request": {
            "method": "DELETE",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{token}}",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/grades/{id}",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "grades",
                "{id}"
              ]
            }
          },
          "response": []
        },
        {
          "id": "fdbd25e5-74a3-4e15-9055-ae34984fe03c",
          "name": "GET /api/marcas",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{token}}",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/marcas",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "marcas"
              ],
              "query": [
                {
                  "key": "property",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "orderBy",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "pageNumber",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "pageSize",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "descricao",
                  "value": "",
                  "description": "",
                  "disabled": true
                }
              ]
            }
          },
          "response": []
        },
        {
          "id": "546aa559-b20b-4656-90b1-13e282c91b24",
          "name": "POST /api/marcas",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{token}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/marcas",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "marcas"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "null",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": []
        },
        {
          "id": "491977c9-b198-4f12-8e2c-0cfd689783f8",
          "name": "GET /api/marcas/{id}",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{token}}",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/marcas/{id}",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "marcas",
                "{id}"
              ]
            }
          },
          "response": []
        },
        {
          "id": "6286d21a-df35-42b6-9ab9-5de9e9e20621",
          "name": "PUT /api/marcas/{id}",
          "request": {
            "method": "PUT",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{token}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/marcas/{id}",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "marcas",
                "{id}"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "null",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": []
        },
        {
          "id": "fc6a54f2-b361-4bc5-9828-2c3f14956ccf",
          "name": "DELETE /api/marcas/{id}",
          "request": {
            "method": "DELETE",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{token}}",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/marcas/{id}",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "marcas",
                "{id}"
              ]
            }
          },
          "response": []
        },
        {
          "id": "bde15f3b-5c25-41a8-a1ad-23c88e71fe32",
          "name": "GET /api/produtos-servicos",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{token}}",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/produtos-servicos",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "produtos-servicos"
              ],
              "query": [
                {
                  "key": "property",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "orderBy",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "pageNumber",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "pageSize",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "gtin",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "codigoInterno",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "nome",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "grupoId",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "subGrupoId",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "tipoItem",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "pesquisa",
                  "value": "",
                  "description": "",
                  "disabled": true
                }
              ]
            }
          },
          "response": []
        },
        {
          "id": "99efd83d-5ff4-4cb9-8e73-66b2e28756d3",
          "name": "POST /api/produtos-servicos",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{token}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/produtos-servicos",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "produtos-servicos"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "null",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": []
        },
        {
          "id": "134959ad-ae40-42f0-aa75-163cfaf8508d",
          "name": "GET /api/produtos-servicos/{id}",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{token}}",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/produtos-servicos/{id}",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "produtos-servicos",
                "{id}"
              ]
            }
          },
          "response": []
        },
        {
          "id": "65468a22-78e2-45a0-a5fa-bb7a7b40b8c6",
          "name": "PUT /api/produtos-servicos/{id}",
          "request": {
            "method": "PUT",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{token}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/produtos-servicos/{id}",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "produtos-servicos",
                "{id}"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "null",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": []
        },
        {
          "id": "ae512a14-bd4b-48e7-b2ae-519ce1ab8eeb",
          "name": "DELETE /api/produtos-servicos/{id}",
          "request": {
            "method": "DELETE",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{token}}",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/produtos-servicos/{id}",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "produtos-servicos",
                "{id}"
              ]
            }
          },
          "response": []
        },
        {
          "id": "98c4c560-29cb-406c-a304-c6e4948c4190",
          "name": "GET /api/produtos-servicos/recuperar-quantidade",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{token}}",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/produtos-servicos/recuperar-quantidade",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "produtos-servicos",
                "recuperar-quantidade"
              ]
            }
          },
          "response": []
        },
        {
          "id": "2c269583-9c0b-4b15-8df9-4bdddd8bfae4",
          "name": "GET /api/produtos-servicos/gerar-relatorio",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{token}}",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/produtos-servicos/gerar-relatorio",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "produtos-servicos",
                "gerar-relatorio"
              ],
              "query": [
                {
                  "key": "gtin",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "codigoInterno",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "nome",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "grupoId",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "subGrupoId",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "tipoItem",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "excel",
                  "value": "",
                  "description": "",
                  "disabled": true
                }
              ]
            }
          },
          "response": []
        },
        {
          "id": "31f7f161-6346-4a31-87e9-14073ed63d22",
          "name": "GET /api/tabelas-produtos",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{token}}",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/tabelas-produtos",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "tabelas-produtos"
              ],
              "query": [
                {
                  "key": "property",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "orderBy",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "pageNumber",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "pageSize",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "descricao",
                  "value": "",
                  "description": "",
                  "disabled": true
                }
              ]
            }
          },
          "response": []
        },
        {
          "id": "5ab7f674-5dd0-40fe-9b4d-e411cb8bee68",
          "name": "POST /api/tabelas-produtos",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{token}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/tabelas-produtos",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "tabelas-produtos"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "null",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": []
        },
        {
          "id": "052a67e3-10ca-484f-97e4-162a40ba51b2",
          "name": "GET /api/tabelas-produtos/{id}",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{token}}",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/tabelas-produtos/{id}",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "tabelas-produtos",
                "{id}"
              ]
            }
          },
          "response": []
        },
        {
          "id": "90d30075-b556-4a13-b51f-9ee7989cd1fd",
          "name": "PUT /api/tabelas-produtos/{id}",
          "request": {
            "method": "PUT",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{token}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/tabelas-produtos/{id}",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "tabelas-produtos",
                "{id}"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "null",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": []
        },
        {
          "id": "1d03a7eb-d749-40ce-b2e2-a3b01f506c6e",
          "name": "DELETE /api/tabelas-produtos/{id}",
          "request": {
            "method": "DELETE",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{token}}",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/tabelas-produtos/{id}",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "tabelas-produtos",
                "{id}"
              ]
            }
          },
          "response": []
        },
        {
          "id": "6d12a313-3849-483c-8437-b8d59d3547a3",
          "name": "GET /api/unidades",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{token}}",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/unidades",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "unidades"
              ],
              "query": [
                {
                  "key": "property",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "orderBy",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "pageNumber",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "pageSize",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "descricao",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "sigla",
                  "value": "",
                  "description": "",
                  "disabled": true
                }
              ]
            }
          },
          "response": []
        },
        {
          "id": "ad42a338-679c-4eb9-a6be-725d1d58e933",
          "name": "POST /api/unidades",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{token}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/unidades",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "unidades"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "null",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": []
        },
        {
          "id": "796b2464-8a15-41c6-950d-f02b2cd2cf21",
          "name": "GET /api/unidades/{id}",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{token}}",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/unidades/{id}",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "unidades",
                "{id}"
              ]
            }
          },
          "response": []
        },
        {
          "id": "c17d3c18-f995-4e91-8819-4a2c8a4d6007",
          "name": "PUT /api/unidades/{id}",
          "request": {
            "method": "PUT",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{token}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/unidades/{id}",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "unidades",
                "{id}"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "null",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": []
        },
        {
          "id": "4fe3c863-8563-42ec-9b43-704c5e94b06f",
          "name": "DELETE /api/unidades/{id}",
          "request": {
            "method": "DELETE",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{token}}",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/unidades/{id}",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "unidades",
                "{id}"
              ]
            }
          },
          "response": []
        }
      ]
    },
    {
      "id": "2f2f01a2-8528-4431-a5d4-aba5871bc2d0",
      "name": "Vendas & Pedidos",
      "item": [
        {
          "id": "cc18389f-3f44-41bd-89b4-43635d42161c",
          "name": "GET /api/manifestos",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{token}}",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/manifestos",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "manifestos"
              ],
              "query": [
                {
                  "key": "property",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "orderBy",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "pageNumber",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "pageSize",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "tipoManifesto",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "dataInicial",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "dataFinal",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "empresaId",
                  "value": "",
                  "description": "",
                  "disabled": true
                }
              ]
            }
          },
          "response": []
        },
        {
          "id": "3ad210db-2322-45b2-a9c3-5c1bf422e35c",
          "name": "GET /api/manifestos/{id}",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{token}}",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/manifestos/{id}",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "manifestos",
                "{id}"
              ]
            }
          },
          "response": []
        },
        {
          "id": "ce1d26fe-5127-4cf4-a1f6-37dfc4653d8a",
          "name": "POST /api/manifestos/consultar/{empresaId}",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{token}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/manifestos/consultar/{empresaId}",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "manifestos",
                "consultar",
                "{empresaId}"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "null",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": []
        },
        {
          "id": "fb9e49cd-2187-44a9-9a24-d7127b47b04f",
          "name": "PUT /api/manifestos/{id}/manifestar",
          "request": {
            "method": "PUT",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{token}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/manifestos/{id}/manifestar",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "manifestos",
                "{id}",
                "manifestar"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "null",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": []
        },
        {
          "id": "006e713a-6220-40d6-a08b-8205d81f227c",
          "name": "GET /api/manifestos/{id}/download",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{token}}",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/manifestos/{id}/download",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "manifestos",
                "{id}",
                "download"
              ]
            }
          },
          "response": []
        },
        {
          "id": "f5a93fb5-60d9-4ea7-88f2-c2015e03fdd3",
          "name": "GET /api/manifestos/{id}/imprimir",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{token}}",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/manifestos/{id}/imprimir",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "manifestos",
                "{id}",
                "imprimir"
              ]
            }
          },
          "response": []
        },
        {
          "id": "c4370d92-0f46-4319-879a-9d5f6f8d0058",
          "name": "GET /api/pedidos",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{token}}",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/pedidos",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "pedidos"
              ],
              "query": [
                {
                  "key": "property",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "orderBy",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "pageNumber",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "pageSize",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "pessoaId",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "tipoPesquisaData",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "dataInicial",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "dataFinal",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "situacao",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "numero",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "empresaId",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "abertos",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "codigoCliente",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "vendedorId",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "classificacaoComercialId",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "produtoId",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "condicaoPagamentoId",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "condicional",
                  "value": "",
                  "description": "",
                  "disabled": true
                }
              ]
            }
          },
          "response": []
        },
        {
          "id": "37eb0ded-a4f7-437d-8b73-de8fc86b5bfc",
          "name": "POST /api/pedidos",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{token}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/pedidos",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "pedidos"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "null",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": []
        },
        {
          "id": "ba7d2e46-8bd9-4965-8196-27666c680637",
          "name": "GET /api/pedidos/{id}",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{token}}",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/pedidos/{id}",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "pedidos",
                "{id}"
              ]
            }
          },
          "response": []
        },
        {
          "id": "c32ff5e1-4478-4014-be8c-199a7d88574d",
          "name": "PUT /api/pedidos/{id}",
          "request": {
            "method": "PUT",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{token}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/pedidos/{id}",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "pedidos",
                "{id}"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "null",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": []
        },
        {
          "id": "0c98a6e7-09bc-4dfd-9d2b-f26da62d1091",
          "name": "DELETE /api/pedidos/{id}",
          "request": {
            "method": "DELETE",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{token}}",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/pedidos/{id}",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "pedidos",
                "{id}"
              ]
            }
          },
          "response": []
        },
        {
          "id": "f2d2a084-035e-48a4-bc32-bcb1f0b24ee5",
          "name": "GET /api/pedidos/recuperar-quantidade",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{token}}",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/pedidos/recuperar-quantidade",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "pedidos",
                "recuperar-quantidade"
              ]
            }
          },
          "response": []
        },
        {
          "id": "24f02d7d-4ce5-43b6-affd-6fb35cd53277",
          "name": "PUT /api/pedidos/{id}/atualizar-comissao",
          "request": {
            "method": "PUT",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{token}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/pedidos/{id}/atualizar-comissao",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "pedidos",
                "{id}",
                "atualizar-comissao"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "null",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": []
        },
        {
          "id": "d9197b57-5649-4332-bd6d-4a96221f8a70",
          "name": "PUT /api/pedidos/{id}/cancelar",
          "request": {
            "method": "PUT",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{token}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/pedidos/{id}/cancelar",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "pedidos",
                "{id}",
                "cancelar"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "null",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": []
        },
        {
          "id": "9b31d108-8901-470b-b728-375a540b0ae1",
          "name": "PUT /api/pedidos/{id}/fechar",
          "request": {
            "method": "PUT",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{token}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/pedidos/{id}/fechar",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "pedidos",
                "{id}",
                "fechar"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "null",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": []
        },
        {
          "id": "28df7e81-6ad7-4a4b-a64b-5d2265954864",
          "name": "PUT /api/pedidos/{id}/retornar",
          "request": {
            "method": "PUT",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{token}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/pedidos/{id}/retornar",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "pedidos",
                "{id}",
                "retornar"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "null",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": []
        },
        {
          "id": "8b1d4076-df5e-4571-ba70-2380fb4f928d",
          "name": "GET /api/pedidos/{id}/imprimir",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{token}}",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/pedidos/{id}/imprimir",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "pedidos",
                "{id}",
                "imprimir"
              ]
            }
          },
          "response": []
        },
        {
          "id": "0a4bf82b-e589-453e-b1c3-ae4365dbfa4f",
          "name": "PUT /api/pedidos/{id}/enviar-email",
          "request": {
            "method": "PUT",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{token}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/pedidos/{id}/enviar-email",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "pedidos",
                "{id}",
                "enviar-email"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "null",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": []
        },
        {
          "id": "530a2d0d-760b-486c-8738-04c8166723b8",
          "name": "GET /api/pedidos/gerar-relatorio",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{token}}",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/pedidos/gerar-relatorio",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "pedidos",
                "gerar-relatorio"
              ],
              "query": [
                {
                  "key": "pessoaId",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "tipoPesquisaData",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "dataInicial",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "dataFinal",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "situacao",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "numero",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "empresaId",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "abertos",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "codigoCliente",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "vendedorId",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "classificacaoComercialId",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "produtoId",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "condicaoPagamentoId",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "condicional",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "exibirItens",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "tipoRelatorio",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "excel",
                  "value": "",
                  "description": "",
                  "disabled": true
                }
              ]
            }
          },
          "response": []
        },
        {
          "id": "7769afe4-e856-4745-a9ed-31972a04d4c6",
          "name": "GET /api/pedidos/gerar-relatorio-curva",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{token}}",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/pedidos/gerar-relatorio-curva",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "pedidos",
                "gerar-relatorio-curva"
              ],
              "query": [
                {
                  "key": "top",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "dataInicial",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "dataFinal",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "empresaId",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "tipo",
                  "value": "",
                  "description": "",
                  "disabled": true
                }
              ]
            }
          },
          "response": []
        },
        {
          "id": "91c1e4a2-620e-495c-9f8a-76700ed18e48",
          "name": "GET /api/remessas",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{token}}",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/remessas",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "remessas"
              ],
              "query": [
                {
                  "key": "property",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "orderBy",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "pageNumber",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "pageSize",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "dataInicial",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "dataFinal",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "empresaId",
                  "value": "",
                  "description": "",
                  "disabled": true
                }
              ]
            }
          },
          "response": []
        },
        {
          "id": "57ecdd1e-680f-4598-95c5-294c9beed22e",
          "name": "POST /api/remessas",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{token}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/remessas",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "remessas"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "null",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": []
        },
        {
          "id": "4b7af991-8f4e-442d-af46-5c9eb1741358",
          "name": "GET /api/remessas/{id}",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{token}}",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/remessas/{id}",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "remessas",
                "{id}"
              ]
            }
          },
          "response": []
        },
        {
          "id": "63b36095-aa0f-4d23-9509-f779ac68da55",
          "name": "PUT /api/remessas/{id}",
          "request": {
            "method": "PUT",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{token}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/remessas/{id}",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "remessas",
                "{id}"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "null",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": []
        },
        {
          "id": "5e6552ae-c6cf-4a20-89ae-fe496153e790",
          "name": "DELETE /api/remessas/{id}",
          "request": {
            "method": "DELETE",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{token}}",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/remessas/{id}",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "remessas",
                "{id}"
              ]
            }
          },
          "response": []
        },
        {
          "id": "922d7016-2383-48c4-8d15-2270587e44ce",
          "name": "PUT /api/remessas/{id}/gerar",
          "request": {
            "method": "PUT",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{token}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/remessas/{id}/gerar",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "remessas",
                "{id}",
                "gerar"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "null",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": []
        },
        {
          "id": "c6844e6a-31bf-4f57-82c3-dfbb405852c9",
          "name": "GET /api/remessas/{contaId}/recuperar-arquivo/{nomeArquivo}",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{token}}",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/remessas/{contaId}/recuperar-arquivo/{nomeArquivo}",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "remessas",
                "{contaId}",
                "recuperar-arquivo",
                "{nomeArquivo}"
              ]
            }
          },
          "response": []
        },
        {
          "id": "bc08a51e-a2f9-4c54-9ec8-9de608453452",
          "name": "POST /api/romaneios/gerar-relatorio",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{token}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/romaneios/gerar-relatorio",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "romaneios",
                "gerar-relatorio"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "null",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": []
        }
      ]
    },
    {
      "id": "d0608b6b-6517-4424-88fa-16b0d5bb35e5",
      "name": "Produção",
      "item": [
        {
          "id": "596f2482-41c0-40ef-be56-aa7aed38d21f",
          "name": "GET /api/ordens-producoes",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{token}}",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/ordens-producoes",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "ordens-producoes"
              ],
              "query": [
                {
                  "key": "property",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "orderBy",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "pageNumber",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "pageSize",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "empresaId",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "codigo",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "tipoPesquisaData",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "dataInicial",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "dataFinal",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "pessoaId",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "vendedorId",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "situacao",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "carga",
                  "value": "",
                  "description": "",
                  "disabled": true
                }
              ]
            }
          },
          "response": []
        },
        {
          "id": "1908053e-742e-4258-a201-a4cc7afa9785",
          "name": "POST /api/ordens-producoes",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{token}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/ordens-producoes",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "ordens-producoes"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "null",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": []
        },
        {
          "id": "b5070766-1990-4573-9f6d-6f564cfcbad2",
          "name": "GET /api/ordens-producoes/{id}",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{token}}",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/ordens-producoes/{id}",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "ordens-producoes",
                "{id}"
              ]
            }
          },
          "response": []
        },
        {
          "id": "9bd36a54-7249-4a7d-aad6-7a5497aefcdc",
          "name": "PUT /api/ordens-producoes/{id}",
          "request": {
            "method": "PUT",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{token}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/ordens-producoes/{id}",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "ordens-producoes",
                "{id}"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "null",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": []
        },
        {
          "id": "2f621066-e4e1-46d6-8184-dbc345a92aad",
          "name": "DELETE /api/ordens-producoes/{id}",
          "request": {
            "method": "DELETE",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{token}}",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/ordens-producoes/{id}",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "ordens-producoes",
                "{id}"
              ]
            }
          },
          "response": []
        },
        {
          "id": "415a7ad3-13e2-4d09-b787-296210342574",
          "name": "GET /api/ordens-producoes/gerar-relatorio",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{token}}",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/ordens-producoes/gerar-relatorio",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "ordens-producoes",
                "gerar-relatorio"
              ],
              "query": [
                {
                  "key": "pessoaId",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "tipoPesquisaData",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "dataInicial",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "dataFinal",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "situacao",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "codigo",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "empresaId",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "vendedorId",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "carga",
                  "value": "",
                  "description": "",
                  "disabled": true
                }
              ]
            }
          },
          "response": []
        },
        {
          "id": "ec35f64a-0827-44cc-9e90-ee39f079dd15",
          "name": "PUT /api/ordens-producoes/{id}/aprovar",
          "request": {
            "method": "PUT",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{token}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/ordens-producoes/{id}/aprovar",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "ordens-producoes",
                "{id}",
                "aprovar"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "null",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": []
        },
        {
          "id": "3dcce3c1-d967-470e-aaf0-7647293b369a",
          "name": "PUT /api/ordens-producoes/{id}/reprovar",
          "request": {
            "method": "PUT",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{token}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/ordens-producoes/{id}/reprovar",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "ordens-producoes",
                "{id}",
                "reprovar"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "null",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": []
        },
        {
          "id": "4cef1d39-36e2-4f94-8d07-0f294b2e744d",
          "name": "PUT /api/ordens-producoes/{id}/finalizar",
          "request": {
            "method": "PUT",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{token}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/ordens-producoes/{id}/finalizar",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "ordens-producoes",
                "{id}",
                "finalizar"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "null",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": []
        },
        {
          "id": "0841b5e6-109e-4cd8-b57f-5080ed5d3ccd",
          "name": "GET /api/ordens-producoes/{id}/gerar",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{token}}",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/ordens-producoes/{id}/gerar",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "ordens-producoes",
                "{id}",
                "gerar"
              ]
            }
          },
          "response": []
        },
        {
          "id": "7b993fc4-1314-44f9-b19d-408b3b388925",
          "name": "GET /api/ordens-producoes/gerar-grupo",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{token}}",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/ordens-producoes/gerar-grupo",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "ordens-producoes",
                "gerar-grupo"
              ],
              "query": [
                {
                  "key": "pedidos",
                  "value": "",
                  "description": "",
                  "disabled": true
                }
              ]
            }
          },
          "response": []
        },
        {
          "id": "092f99f3-1a01-4dba-a537-83155130a1c6",
          "name": "GET /api/ordens-producoes/{id}/imprimir",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{token}}",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/ordens-producoes/{id}/imprimir",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "ordens-producoes",
                "{id}",
                "imprimir"
              ]
            }
          },
          "response": []
        },
        {
          "id": "f0481c27-9677-4450-9d46-5e0be12db3a1",
          "name": "GET /api/ordens-producoes/{id}/imprimir-producao",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{token}}",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/ordens-producoes/{id}/imprimir-producao",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "ordens-producoes",
                "{id}",
                "imprimir-producao"
              ]
            }
          },
          "response": []
        },
        {
          "id": "3ff35c94-e55b-4044-b507-fa40aff03ab9",
          "name": "GET /api/ordens-producoes-itens/{id}",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{token}}",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/ordens-producoes-itens/{id}",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "ordens-producoes-itens",
                "{id}"
              ]
            }
          },
          "response": []
        },
        {
          "id": "325301af-edaf-4517-80af-b21b46c4af5a",
          "name": "PUT /api/ordens-producoes-itens/{id}",
          "request": {
            "method": "PUT",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{token}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/ordens-producoes-itens/{id}",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "ordens-producoes-itens",
                "{id}"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "null",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": []
        },
        {
          "id": "d55d9e75-2c9d-4fad-96e0-09b0fd456f13",
          "name": "DELETE /api/ordens-producoes-itens/{id}",
          "request": {
            "method": "DELETE",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{token}}",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/ordens-producoes-itens/{id}",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "ordens-producoes-itens",
                "{id}"
              ]
            }
          },
          "response": []
        },
        {
          "id": "d1b33514-e898-4288-ad85-f9949629ddc3",
          "name": "POST /api/ordens-producoes-itens",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{token}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/ordens-producoes-itens",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "ordens-producoes-itens"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "null",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": []
        },
        {
          "id": "ab6338a7-8bf0-47b1-a870-1c4a9553c82b",
          "name": "PUT /api/ordens-producoes-itens/{id}/inicializar",
          "request": {
            "method": "PUT",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{token}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/ordens-producoes-itens/{id}/inicializar",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "ordens-producoes-itens",
                "{id}",
                "inicializar"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "null",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": []
        },
        {
          "id": "6637354b-8f94-4d47-a717-110851d4545a",
          "name": "PUT /api/ordens-producoes-itens/{id}/finalizar",
          "request": {
            "method": "PUT",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{token}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/ordens-producoes-itens/{id}/finalizar",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "ordens-producoes-itens",
                "{id}",
                "finalizar"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "null",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": []
        },
        {
          "id": "7d35d50e-00c6-422b-aaaf-10bd72904fdc",
          "name": "PUT /api/ordens-producoes-itens/{id}/cancelar",
          "request": {
            "method": "PUT",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{token}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/ordens-producoes-itens/{id}/cancelar",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "ordens-producoes-itens",
                "{id}",
                "cancelar"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "null",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": []
        },
        {
          "id": "59ced631-b924-4d52-b79c-61e4b47f21de",
          "name": "PUT /api/ordens-producoes-itens/{id}/atualizar-terceiro",
          "request": {
            "method": "PUT",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{token}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/ordens-producoes-itens/{id}/atualizar-terceiro",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "ordens-producoes-itens",
                "{id}",
                "atualizar-terceiro"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "null",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": []
        },
        {
          "id": "e52f141e-73b0-4fdd-b845-a9b7c951cf6d",
          "name": "POST /api/ordens-producoes-itens/{id}/materias-primas",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{token}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/ordens-producoes-itens/{id}/materias-primas",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "ordens-producoes-itens",
                "{id}",
                "materias-primas"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "null",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": []
        },
        {
          "id": "c212d35a-b5e9-4942-815e-f75e7535fef3",
          "name": "PUT /api/ordens-producoes-itens/{id}/materias-primas",
          "request": {
            "method": "PUT",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{token}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/ordens-producoes-itens/{id}/materias-primas",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "ordens-producoes-itens",
                "{id}",
                "materias-primas"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "null",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": []
        },
        {
          "id": "1bffc7b2-9487-4b07-b679-e9632b8cca95",
          "name": "PUT /api/ordens-producoes-itens/{id}/materias-primas/{materiaPrimaId}/grades",
          "request": {
            "method": "PUT",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{token}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/ordens-producoes-itens/{id}/materias-primas/{materiaPrimaId}/grades",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "ordens-producoes-itens",
                "{id}",
                "materias-primas",
                "{materiaPrimaId}",
                "grades"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "[\n  null\n]",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": []
        },
        {
          "id": "7fd63c8d-8aa6-4e13-a7c6-43e33103623f",
          "name": "DELETE /api/ordens-producoes-itens/{id}/materias-primas/{materiaPrimaId}",
          "request": {
            "method": "DELETE",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{token}}",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/ordens-producoes-itens/{id}/materias-primas/{materiaPrimaId}",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "ordens-producoes-itens",
                "{id}",
                "materias-primas",
                "{materiaPrimaId}"
              ]
            }
          },
          "response": []
        },
        {
          "id": "8e502f56-e791-4b78-a292-8122169a3f42",
          "name": "POST /api/ordens-producoes-itens/{id}/setores",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{token}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/ordens-producoes-itens/{id}/setores",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "ordens-producoes-itens",
                "{id}",
                "setores"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "null",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": []
        },
        {
          "id": "2fb2ddb6-02b3-4148-bc30-5da5c59f8eaa",
          "name": "PUT /api/ordens-producoes-itens/{id}/setores",
          "request": {
            "method": "PUT",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{token}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/ordens-producoes-itens/{id}/setores",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "ordens-producoes-itens",
                "{id}",
                "setores"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "null",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": []
        },
        {
          "id": "e2df2447-4fe4-4ba7-8169-740e8a7b52d1",
          "name": "PUT /api/ordens-producoes-itens/{id}/setores/{setorId}/situacao",
          "request": {
            "method": "PUT",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{token}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/ordens-producoes-itens/{id}/setores/{setorId}/situacao",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "ordens-producoes-itens",
                "{id}",
                "setores",
                "{setorId}",
                "situacao"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "null",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": []
        },
        {
          "id": "710910b1-a317-4b22-9afe-9992a8a28d16",
          "name": "GET /api/ordens-producoes-itens/{id}/imprimir",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{token}}",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/ordens-producoes-itens/{id}/imprimir",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "ordens-producoes-itens",
                "{id}",
                "imprimir"
              ]
            }
          },
          "response": []
        }
      ]
    },
    {
      "id": "ea5d6e95-fd30-4974-bc51-c536eb6076dc",
      "name": "Cadastros",
      "item": [
        {
          "id": "002743cb-9410-4643-9cce-340eeb210203",
          "name": "GET /api/cargos",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{token}}",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/cargos",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "cargos"
              ],
              "query": [
                {
                  "key": "property",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "orderBy",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "pageNumber",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "pageSize",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "descricao",
                  "value": "",
                  "description": "",
                  "disabled": true
                }
              ]
            }
          },
          "response": []
        },
        {
          "id": "eebdf242-9aba-4259-94a6-c5b2973d07bf",
          "name": "POST /api/cargos",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{token}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/cargos",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "cargos"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "null",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": []
        },
        {
          "id": "b80f9dbc-1ab8-44bb-b9d8-de68d4628b27",
          "name": "GET /api/cargos/{id}",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{token}}",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/cargos/{id}",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "cargos",
                "{id}"
              ]
            }
          },
          "response": []
        },
        {
          "id": "1e9c3569-373e-43da-b795-4bed3e081527",
          "name": "PUT /api/cargos/{id}",
          "request": {
            "method": "PUT",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{token}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/cargos/{id}",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "cargos",
                "{id}"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "null",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": []
        },
        {
          "id": "cb4fe6bd-7e1b-41a1-b220-74c06bc2db95",
          "name": "DELETE /api/cargos/{id}",
          "request": {
            "method": "DELETE",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{token}}",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/cargos/{id}",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "cargos",
                "{id}"
              ]
            }
          },
          "response": []
        },
        {
          "id": "ee60745b-46c2-4d22-9539-ebf5f233e38c",
          "name": "GET /api/categorias",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{token}}",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/categorias",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "categorias"
              ],
              "query": [
                {
                  "key": "property",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "orderBy",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "pageNumber",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "pageSize",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "descricao",
                  "value": "",
                  "description": "",
                  "disabled": true
                }
              ]
            }
          },
          "response": []
        },
        {
          "id": "01ae30a3-161d-42b5-8a98-6dc77b1329e5",
          "name": "POST /api/categorias",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{token}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/categorias",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "categorias"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "null",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": []
        },
        {
          "id": "a13b035a-f2e4-42e6-aa6a-56db867e0421",
          "name": "GET /api/categorias/{id}",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{token}}",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/categorias/{id}",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "categorias",
                "{id}"
              ]
            }
          },
          "response": []
        },
        {
          "id": "c5b63dac-a916-4442-ac5b-4b9ca9e75ab3",
          "name": "PUT /api/categorias/{id}",
          "request": {
            "method": "PUT",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{token}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/categorias/{id}",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "categorias",
                "{id}"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "null",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": []
        },
        {
          "id": "39f434ea-e888-4da8-a37f-7cb69bd167cc",
          "name": "DELETE /api/categorias/{id}",
          "request": {
            "method": "DELETE",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{token}}",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/categorias/{id}",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "categorias",
                "{id}"
              ]
            }
          },
          "response": []
        },
        {
          "id": "2f1a34f7-c856-4a56-b6fb-c69b64bb8c32",
          "name": "GET /api/centros-custos",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{token}}",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/centros-custos",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "centros-custos"
              ]
            }
          },
          "response": []
        },
        {
          "id": "b689e8dc-ca37-4f25-b8c4-6c9a040aab62",
          "name": "POST /api/centros-custos",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{token}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/centros-custos",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "centros-custos"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "null",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": []
        },
        {
          "id": "91c16029-0ab2-4ab1-bbb9-fcf4b3ea87f4",
          "name": "GET /api/centros-custos/{id}",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{token}}",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/centros-custos/{id}",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "centros-custos",
                "{id}"
              ]
            }
          },
          "response": []
        },
        {
          "id": "ab537486-4455-404f-88dc-7e6899d4c75a",
          "name": "PUT /api/centros-custos/{id}",
          "request": {
            "method": "PUT",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{token}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/centros-custos/{id}",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "centros-custos",
                "{id}"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "null",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": []
        },
        {
          "id": "d3f5b902-f463-41c3-a549-cf44d407e7aa",
          "name": "DELETE /api/centros-custos/{id}",
          "request": {
            "method": "DELETE",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{token}}",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/centros-custos/{id}",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "centros-custos",
                "{id}"
              ]
            }
          },
          "response": []
        },
        {
          "id": "f6f7c08a-363e-4844-bcc5-97f1e6347362",
          "name": "GET /api/centros-custos-categorias",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{token}}",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/centros-custos-categorias",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "centros-custos-categorias"
              ]
            }
          },
          "response": []
        },
        {
          "id": "3cd4f1e6-88a7-42b5-841c-17372b8b6eb6",
          "name": "POST /api/centros-custos-categorias",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{token}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/centros-custos-categorias",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "centros-custos-categorias"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "null",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": []
        },
        {
          "id": "9ae0865f-4040-4484-9d30-93201ca8c5cd",
          "name": "GET /api/centros-custos-categorias/{id}",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{token}}",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/centros-custos-categorias/{id}",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "centros-custos-categorias",
                "{id}"
              ]
            }
          },
          "response": []
        },
        {
          "id": "4612bbc1-05b2-45ae-a35b-3d547d0df739",
          "name": "PUT /api/centros-custos-categorias/{id}",
          "request": {
            "method": "PUT",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{token}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/centros-custos-categorias/{id}",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "centros-custos-categorias",
                "{id}"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "null",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": []
        },
        {
          "id": "2d550b2d-e5ff-4edf-b71f-357078d2fc5f",
          "name": "DELETE /api/centros-custos-categorias/{id}",
          "request": {
            "method": "DELETE",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{token}}",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/centros-custos-categorias/{id}",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "centros-custos-categorias",
                "{id}"
              ]
            }
          },
          "response": []
        },
        {
          "id": "8b4f1314-950c-45df-98bc-2316d3235f59",
          "name": "GET /api/cidades",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{token}}",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/cidades",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "cidades"
              ]
            }
          },
          "response": []
        },
        {
          "id": "4c4b8b23-f5e7-4447-ad37-2d94621e5828",
          "name": "GET /api/classificacoes",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{token}}",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/classificacoes",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "classificacoes"
              ],
              "query": [
                {
                  "key": "property",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "orderBy",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "pageNumber",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "pageSize",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "descricao",
                  "value": "",
                  "description": "",
                  "disabled": true
                }
              ]
            }
          },
          "response": []
        },
        {
          "id": "45da32dc-b0dc-435d-8e7a-816a01ae21d5",
          "name": "POST /api/classificacoes",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{token}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/classificacoes",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "classificacoes"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "null",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": []
        },
        {
          "id": "3be8be82-c5e8-4fd6-b2b4-3ab860f230b8",
          "name": "GET /api/classificacoes/{id}",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{token}}",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/classificacoes/{id}",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "classificacoes",
                "{id}"
              ]
            }
          },
          "response": []
        },
        {
          "id": "2148ed1d-d4b8-4825-8561-322bc562e36f",
          "name": "PUT /api/classificacoes/{id}",
          "request": {
            "method": "PUT",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{token}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/classificacoes/{id}",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "classificacoes",
                "{id}"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "null",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": []
        },
        {
          "id": "83d084b6-b9fb-47e6-8d3e-4013e863673b",
          "name": "DELETE /api/classificacoes/{id}",
          "request": {
            "method": "DELETE",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{token}}",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/classificacoes/{id}",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "classificacoes",
                "{id}"
              ]
            }
          },
          "response": []
        },
        {
          "id": "222c9c9f-d434-4263-a807-4b1f870cafac",
          "name": "GET /api/classificacoes-comerciais",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{token}}",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/classificacoes-comerciais",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "classificacoes-comerciais"
              ],
              "query": [
                {
                  "key": "property",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "orderBy",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "pageNumber",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "pageSize",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "descricao",
                  "value": "",
                  "description": "",
                  "disabled": true
                }
              ]
            }
          },
          "response": []
        },
        {
          "id": "40660ad9-47a7-48cc-9a78-5aed0f4b47c5",
          "name": "POST /api/classificacoes-comerciais",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{token}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/classificacoes-comerciais",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "classificacoes-comerciais"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "null",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": []
        },
        {
          "id": "b28c35e1-115a-464c-b56b-3355a40f493b",
          "name": "GET /api/classificacoes-comerciais/{id}",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{token}}",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/classificacoes-comerciais/{id}",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "classificacoes-comerciais",
                "{id}"
              ]
            }
          },
          "response": []
        },
        {
          "id": "60ed9bcd-f733-4ec1-abac-6d7b7177252b",
          "name": "PUT /api/classificacoes-comerciais/{id}",
          "request": {
            "method": "PUT",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{token}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/classificacoes-comerciais/{id}",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "classificacoes-comerciais",
                "{id}"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "null",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": []
        },
        {
          "id": "dd664c24-1336-4668-a648-1fc5cbd3d2f6",
          "name": "DELETE /api/classificacoes-comerciais/{id}",
          "request": {
            "method": "DELETE",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{token}}",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/classificacoes-comerciais/{id}",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "classificacoes-comerciais",
                "{id}"
              ]
            }
          },
          "response": []
        },
        {
          "id": "879fc2c5-4f0d-4fc7-b140-17a125127d44",
          "name": "GET /api/grupos",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{token}}",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/grupos",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "grupos"
              ],
              "query": [
                {
                  "key": "property",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "orderBy",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "pageNumber",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "pageSize",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "descricao",
                  "value": "",
                  "description": "",
                  "disabled": true
                }
              ]
            }
          },
          "response": []
        },
        {
          "id": "6481430d-09e7-456d-8136-ad0e6aa892a0",
          "name": "POST /api/grupos",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{token}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/grupos",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "grupos"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "null",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": []
        },
        {
          "id": "60edd76e-ec7f-482f-bcb2-5f34513bcf50",
          "name": "GET /api/grupos/{id}",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{token}}",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/grupos/{id}",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "grupos",
                "{id}"
              ]
            }
          },
          "response": []
        },
        {
          "id": "02d655bb-ef95-4ccb-9868-49d1ee88f06d",
          "name": "PUT /api/grupos/{id}",
          "request": {
            "method": "PUT",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{token}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/grupos/{id}",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "grupos",
                "{id}"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "null",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": []
        },
        {
          "id": "78ced0e5-d6b4-4418-ad08-8cbf201e94de",
          "name": "DELETE /api/grupos/{id}",
          "request": {
            "method": "DELETE",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{token}}",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/grupos/{id}",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "grupos",
                "{id}"
              ]
            }
          },
          "response": []
        },
        {
          "id": "0853b3d7-96ef-4cfd-8e77-0ea59d3bc641",
          "name": "GET /api/paises",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{token}}",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/paises",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "paises"
              ]
            }
          },
          "response": []
        },
        {
          "id": "d2d25feb-0db4-44f1-a8d2-7713352d2806",
          "name": "GET /api/pessoas",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{token}}",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/pessoas",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "pessoas"
              ],
              "query": [
                {
                  "key": "property",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "orderBy",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "pageNumber",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "pageSize",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "nome",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "cnpjCpfDi",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "tipoPesquisaPessoa",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "ativo",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "codigo",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "uf",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "cidadeId",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "pessoaId",
                  "value": "",
                  "description": "",
                  "disabled": true
                }
              ]
            }
          },
          "response": []
        },
        {
          "id": "55e2886e-4637-45f7-906d-4f7448d99044",
          "name": "POST /api/pessoas",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{token}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/pessoas",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "pessoas"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "null",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": []
        },
        {
          "id": "0463f59e-2d32-430b-8410-1eea0d9542c1",
          "name": "GET /api/pessoas/{id}",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{token}}",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/pessoas/{id}",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "pessoas",
                "{id}"
              ]
            }
          },
          "response": []
        },
        {
          "id": "77d2ffe3-dadb-4c92-a129-daa1baac3492",
          "name": "PUT /api/pessoas/{id}",
          "request": {
            "method": "PUT",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{token}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/pessoas/{id}",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "pessoas",
                "{id}"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "null",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": []
        },
        {
          "id": "c61c2806-70c5-4d54-bb9c-3fe2cf86e5f1",
          "name": "DELETE /api/pessoas/{id}",
          "request": {
            "method": "DELETE",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{token}}",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/pessoas/{id}",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "pessoas",
                "{id}"
              ]
            }
          },
          "response": []
        },
        {
          "id": "38c013ef-456a-4fc3-85e5-f0f2fead1f64",
          "name": "GET /api/pessoas/recuperar-quantidade",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{token}}",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/pessoas/recuperar-quantidade",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "pessoas",
                "recuperar-quantidade"
              ]
            }
          },
          "response": []
        },
        {
          "id": "b2bbaec1-3bec-4607-aa46-96cc25527661",
          "name": "GET /api/pessoas/gerar-relatorio",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{token}}",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/pessoas/gerar-relatorio",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "pessoas",
                "gerar-relatorio"
              ],
              "query": [
                {
                  "key": "nome",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "cnpjCpfDi",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "tipoPesquisaPessoa",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "ativo",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "codigo",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "uf",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "cidadeId",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "pessoaId",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "excel",
                  "value": "",
                  "description": "",
                  "disabled": true
                }
              ]
            }
          },
          "response": []
        },
        {
          "id": "54ae3a0e-4456-49d5-aafb-c554d0bfd8d6",
          "name": "GET /api/pessoas/consultar/{cnpjCpfDi}",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{token}}",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/pessoas/consultar/{cnpjCpfDi}",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "pessoas",
                "consultar",
                "{cnpjCpfDi}"
              ]
            }
          },
          "response": []
        },
        {
          "id": "f8a0dd13-5766-41b8-841e-b059bde2ddbd",
          "name": "GET /api/setores",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{token}}",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/setores",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "setores"
              ],
              "query": [
                {
                  "key": "property",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "orderBy",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "pageNumber",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "pageSize",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "descricao",
                  "value": "",
                  "description": "",
                  "disabled": true
                }
              ]
            }
          },
          "response": []
        },
        {
          "id": "81d83338-ec07-495d-8be7-5bc12dd41640",
          "name": "POST /api/setores",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{token}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/setores",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "setores"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "null",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": []
        },
        {
          "id": "9c883a14-07d5-4ee3-8d7e-fcd3111deb32",
          "name": "GET /api/setores/{id}",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{token}}",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/setores/{id}",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "setores",
                "{id}"
              ]
            }
          },
          "response": []
        },
        {
          "id": "3b49ed06-85e5-4ee7-814b-8806f26e1619",
          "name": "PUT /api/setores/{id}",
          "request": {
            "method": "PUT",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{token}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/setores/{id}",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "setores",
                "{id}"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "null",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": []
        },
        {
          "id": "480bc487-856b-4e04-a26e-3e434a0d3b29",
          "name": "DELETE /api/setores/{id}",
          "request": {
            "method": "DELETE",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{token}}",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/setores/{id}",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "setores",
                "{id}"
              ]
            }
          },
          "response": []
        }
      ]
    },
    {
      "id": "ec98478f-a65f-4181-9f11-7c10fe50a4b6",
      "name": "Documentos & Arquivos",
      "item": [
        {
          "id": "3c8a8b75-94a7-48db-9b27-166af5c46922",
          "name": "POST /api/arquivos/{empresaId}",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{token}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/arquivos/{empresaId}",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "arquivos",
                "{empresaId}"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "null",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": []
        },
        {
          "id": "d22b0362-0a09-4f2f-abf7-fee659c41d4b",
          "name": "GET /api/arquivos/{empresaId}",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{token}}",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/arquivos/{empresaId}",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "arquivos",
                "{empresaId}"
              ]
            }
          },
          "response": []
        },
        {
          "id": "e37f764f-5ea6-47e3-bec7-74e2cd0e215f",
          "name": "GET /api/documentos",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{token}}",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/documentos",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "documentos"
              ],
              "query": [
                {
                  "key": "property",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "orderBy",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "pageNumber",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "pageSize",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "descricao",
                  "value": "",
                  "description": "",
                  "disabled": true
                }
              ]
            }
          },
          "response": []
        },
        {
          "id": "ee6f2300-bb23-4e14-8585-fd6f78dd9d6c",
          "name": "POST /api/documentos",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{token}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/documentos",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "documentos"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "null",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": []
        },
        {
          "id": "4cb3b48e-28d2-49cf-bdcd-58747a08d2b2",
          "name": "GET /api/documentos/{id}",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{token}}",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/documentos/{id}",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "documentos",
                "{id}"
              ]
            }
          },
          "response": []
        },
        {
          "id": "16b13eb1-ee32-483e-8dbe-15bc72df8fcf",
          "name": "PUT /api/documentos/{id}",
          "request": {
            "method": "PUT",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{token}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/documentos/{id}",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "documentos",
                "{id}"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "null",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": []
        },
        {
          "id": "6dc671b8-8676-49cd-bbec-1fb133d91fe0",
          "name": "DELETE /api/documentos/{id}",
          "request": {
            "method": "DELETE",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{token}}",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/documentos/{id}",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "documentos",
                "{id}"
              ]
            }
          },
          "response": []
        },
        {
          "id": "c3a60f05-e37d-49e4-9ef8-5abb869eec3c",
          "name": "POST /api/etiquetas",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{token}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/etiquetas",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "etiquetas"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "null",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": []
        },
        {
          "id": "f6709289-811e-4320-92a2-db58a7e2bfd4",
          "name": "POST /api/imagens/{tipo}/{id}",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{token}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/imagens/{tipo}/{id}",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "imagens",
                "{tipo}",
                "{id}"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "null",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": []
        },
        {
          "id": "c087934e-8204-4720-9f01-971eec3c3330",
          "name": "GET /api/modelos",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{token}}",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/modelos",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "modelos"
              ],
              "query": [
                {
                  "key": "property",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "orderBy",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "pageNumber",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "pageSize",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "descricao",
                  "value": "",
                  "description": "",
                  "disabled": true
                }
              ]
            }
          },
          "response": []
        },
        {
          "id": "75f1e02e-64c1-4b2e-b324-a21d6078189a",
          "name": "POST /api/modelos",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{token}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/modelos",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "modelos"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "null",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": []
        },
        {
          "id": "806b0d47-cd24-4a1c-b178-2252da679d35",
          "name": "GET /api/modelos/{id}",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{token}}",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/modelos/{id}",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "modelos",
                "{id}"
              ]
            }
          },
          "response": []
        },
        {
          "id": "448674c2-b6e8-4f98-8023-34e19df59563",
          "name": "PUT /api/modelos/{id}",
          "request": {
            "method": "PUT",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{token}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/modelos/{id}",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "modelos",
                "{id}"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "null",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": []
        },
        {
          "id": "cb08e552-ede2-41a5-aafa-730404f9a489",
          "name": "DELETE /api/modelos/{id}",
          "request": {
            "method": "DELETE",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{token}}",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/modelos/{id}",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "modelos",
                "{id}"
              ]
            }
          },
          "response": []
        },
        {
          "id": "dc865da0-7750-4e52-b11d-b291326d8485",
          "name": "PUT /api/modelos/atualizar-template/{id}",
          "request": {
            "method": "PUT",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{token}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/modelos/atualizar-template/{id}",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "modelos",
                "atualizar-template",
                "{id}"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "null",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": []
        }
      ]
    },
    {
      "id": "1e350ec9-0316-4b70-96e3-def19c593f40",
      "name": "Configurações",
      "item": [
        {
          "id": "ec9aa21b-1663-4091-8d0c-e6c22acb60a0",
          "name": "GET /api/configuracoes/{empresaId}",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{token}}",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/configuracoes/{empresaId}",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "configuracoes",
                "{empresaId}"
              ]
            }
          },
          "response": []
        },
        {
          "id": "f408f8fc-bc50-4d8c-97ce-b4b6cdf450d2",
          "name": "POST /api/configuracoes",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{token}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/configuracoes",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "configuracoes"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "null",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": []
        },
        {
          "id": "9fd29df2-dd6c-48cc-8d93-8ff1a06718ad",
          "name": "GET /api/operacoes",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{token}}",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/operacoes",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "operacoes"
              ],
              "query": [
                {
                  "key": "property",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "orderBy",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "pageNumber",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "pageSize",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "descricao",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "setorId",
                  "value": "",
                  "description": "",
                  "disabled": true
                }
              ]
            }
          },
          "response": []
        },
        {
          "id": "33f4206c-1129-410e-9b7a-9f1fdb0d814f",
          "name": "POST /api/operacoes",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{token}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/operacoes",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "operacoes"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "null",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": []
        },
        {
          "id": "65a480c1-5239-4ea2-a898-7324d1f0c032",
          "name": "GET /api/operacoes/{id}",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{token}}",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/operacoes/{id}",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "operacoes",
                "{id}"
              ]
            }
          },
          "response": []
        },
        {
          "id": "6f235d86-2921-4645-81b7-33016df8a2fb",
          "name": "PUT /api/operacoes/{id}",
          "request": {
            "method": "PUT",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{token}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/operacoes/{id}",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "operacoes",
                "{id}"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "null",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": []
        },
        {
          "id": "1353ba09-9626-4709-9879-8de25767f77e",
          "name": "DELETE /api/operacoes/{id}",
          "request": {
            "method": "DELETE",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{token}}",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/operacoes/{id}",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "operacoes",
                "{id}"
              ]
            }
          },
          "response": []
        },
        {
          "id": "5fa9f727-59fd-45f6-a787-c70f9c1ae35a",
          "name": "POST /api/webhooks",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{token}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/webhooks",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "webhooks"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "null",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": []
        }
      ]
    },
    {
      "id": "4cee73d8-1351-4150-adb1-dba07dffef9b",
      "name": "Outros",
      "item": [
        {
          "id": "aeb724e6-81de-41e3-be38-64467760dbf7",
          "name": "GET /api/dashboard/recuperar-quantidades",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{token}}",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/dashboard/recuperar-quantidades",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "dashboard",
                "recuperar-quantidades"
              ]
            }
          },
          "response": []
        },
        {
          "id": "1191f92e-ad05-4ee6-8c5e-2409bce000a9",
          "name": "GET /api/dashboard/recuperar-organizacao",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{token}}",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/dashboard/recuperar-organizacao",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "dashboard",
                "recuperar-organizacao"
              ]
            }
          },
          "response": []
        },
        {
          "id": "3ad11c03-b16a-45cf-8f53-6f8fc761144d",
          "name": "GET /api/dashboard/recuperar-pedido-mensal",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{token}}",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/dashboard/recuperar-pedido-mensal",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "dashboard",
                "recuperar-pedido-mensal"
              ]
            }
          },
          "response": []
        },
        {
          "id": "58aca384-5cb1-4f35-986c-b9aba18f9885",
          "name": "GET /api/apontamentos",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{token}}",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/apontamentos",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "apontamentos"
              ],
              "query": [
                {
                  "key": "property",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "orderBy",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "pageNumber",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "pageSize",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "ordemProducaoItemSetorId",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "dataInicial",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "dataFinal",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "operadorId",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "operacaoId",
                  "value": "",
                  "description": "",
                  "disabled": true
                }
              ]
            }
          },
          "response": []
        },
        {
          "id": "2e81489e-a756-40ca-9ae5-d02daf7e3f21",
          "name": "POST /api/apontamentos",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{token}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/apontamentos",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "apontamentos"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "null",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": []
        },
        {
          "id": "72fa927f-cb00-4595-af56-1fb1c09860ac",
          "name": "GET /api/apontamentos/{id}",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{token}}",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/apontamentos/{id}",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "apontamentos",
                "{id}"
              ]
            }
          },
          "response": []
        },
        {
          "id": "f516ac34-983f-40f9-8c9c-be1fbd429108",
          "name": "PUT /api/apontamentos/{id}",
          "request": {
            "method": "PUT",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{token}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/apontamentos/{id}",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "apontamentos",
                "{id}"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "null",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": []
        },
        {
          "id": "977595cf-3e8f-470c-a09e-c9fa3da4109a",
          "name": "DELETE /api/apontamentos/{id}",
          "request": {
            "method": "DELETE",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{token}}",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/apontamentos/{id}",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "apontamentos",
                "{id}"
              ]
            }
          },
          "response": []
        },
        {
          "id": "6eaf1ad9-9cf7-4a44-b8d3-f3ed5b539fb3",
          "name": "GET /api/apontamentos/ultimos",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{token}}",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/apontamentos/ultimos",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "apontamentos",
                "ultimos"
              ]
            }
          },
          "response": []
        },
        {
          "id": "1e31f154-eb9a-4949-b3e3-005e5cfca220",
          "name": "POST /api/apontamentos/finalizar",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{token}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/apontamentos/finalizar",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "apontamentos",
                "finalizar"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "null",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": []
        },
        {
          "id": "aee44acb-7c3d-47f2-8c4e-6982b3348f47",
          "name": "POST /api/apontamentos/obter-aberto",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{token}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/apontamentos/obter-aberto",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "apontamentos",
                "obter-aberto"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "null",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": []
        },
        {
          "id": "4de230f8-906d-4f9b-8189-6753316beaa6",
          "name": "GET /api/projetos",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{token}}",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/projetos",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "projetos"
              ],
              "query": [
                {
                  "key": "property",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "orderBy",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "pageNumber",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "pageSize",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "descricao",
                  "value": "",
                  "description": "",
                  "disabled": true
                }
              ]
            }
          },
          "response": []
        },
        {
          "id": "83a3578d-17eb-441f-b763-a8126978f131",
          "name": "POST /api/projetos",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{token}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/projetos",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "projetos"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "null",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": []
        },
        {
          "id": "65b829c0-a386-434d-bee9-853373ded00c",
          "name": "GET /api/projetos/{id}",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{token}}",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/projetos/{id}",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "projetos",
                "{id}"
              ]
            }
          },
          "response": []
        },
        {
          "id": "cfdf7176-d9bb-43ad-a4fc-f708993f52c9",
          "name": "PUT /api/projetos/{id}",
          "request": {
            "method": "PUT",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{token}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/projetos/{id}",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "projetos",
                "{id}"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "null",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": []
        },
        {
          "id": "017fadc1-6578-4c04-acd2-0d79603ea2d5",
          "name": "DELETE /api/projetos/{id}",
          "request": {
            "method": "DELETE",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{token}}",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/projetos/{id}",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "projetos",
                "{id}"
              ]
            }
          },
          "response": []
        },
        {
          "id": "6b35fbba-540c-49b2-b6e0-ada61bc081b8",
          "name": "GET /api/sobre",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{token}}",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/sobre",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "sobre"
              ]
            }
          },
          "response": []
        },
        {
          "id": "6239e886-9d73-4822-8c3f-b49351ebb42b",
          "name": "GET /api/subgrupos",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{token}}",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/subgrupos",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "subgrupos"
              ],
              "query": [
                {
                  "key": "property",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "orderBy",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "pageNumber",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "pageSize",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "descricao",
                  "value": "",
                  "description": "",
                  "disabled": true
                }
              ]
            }
          },
          "response": []
        },
        {
          "id": "96aa8558-02b9-4553-b6ef-3bb9285dd946",
          "name": "POST /api/subgrupos",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{token}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/subgrupos",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "subgrupos"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "null",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": []
        },
        {
          "id": "93ec7db5-7b22-4e50-ad4a-359f8bd908d2",
          "name": "GET /api/subgrupos/{id}",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{token}}",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/subgrupos/{id}",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "subgrupos",
                "{id}"
              ]
            }
          },
          "response": []
        },
        {
          "id": "c1eba2e4-acc7-4830-ad81-23e2fd7d002b",
          "name": "PUT /api/subgrupos/{id}",
          "request": {
            "method": "PUT",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{token}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/subgrupos/{id}",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "subgrupos",
                "{id}"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "null",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": []
        },
        {
          "id": "85c08c03-9501-48fb-aa1e-2e1f102d1c4e",
          "name": "DELETE /api/subgrupos/{id}",
          "request": {
            "method": "DELETE",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{token}}",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/subgrupos/{id}",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "subgrupos",
                "{id}"
              ]
            }
          },
          "response": []
        },
        {
          "id": "d27d6c2c-095c-4d78-adc9-705adf1a10be",
          "name": "GET /api/tipos-contas",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{token}}",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/tipos-contas",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "tipos-contas"
              ],
              "query": [
                {
                  "key": "property",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "orderBy",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "pageNumber",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "pageSize",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "descricao",
                  "value": "",
                  "description": "",
                  "disabled": true
                }
              ]
            }
          },
          "response": []
        },
        {
          "id": "183a1735-288b-4cb6-bc85-f94dc51d60bf",
          "name": "POST /api/tipos-contas",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{token}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/tipos-contas",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "tipos-contas"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "null",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": []
        },
        {
          "id": "cc9c2e65-e4ad-4a2c-a014-7b2c38594840",
          "name": "GET /api/tipos-contas/{id}",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{token}}",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/tipos-contas/{id}",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "tipos-contas",
                "{id}"
              ]
            }
          },
          "response": []
        },
        {
          "id": "19e88fec-9404-44b8-84f7-808b427d9d86",
          "name": "PUT /api/tipos-contas/{id}",
          "request": {
            "method": "PUT",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{token}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/tipos-contas/{id}",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "tipos-contas",
                "{id}"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "null",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": []
        },
        {
          "id": "405894d4-8dc0-416a-acc9-b616bc64ffe0",
          "name": "DELETE /api/tipos-contas/{id}",
          "request": {
            "method": "DELETE",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{token}}",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/tipos-contas/{id}",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "tipos-contas",
                "{id}"
              ]
            }
          },
          "response": []
        },
        {
          "id": "43cba072-6934-41dc-b6aa-eb0d69a8ee12",
          "name": "GET /api/veiculos",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{token}}",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/veiculos",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "veiculos"
              ],
              "query": [
                {
                  "key": "property",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "orderBy",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "pageNumber",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "pageSize",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "placa",
                  "value": "",
                  "description": "",
                  "disabled": true
                }
              ]
            }
          },
          "response": []
        },
        {
          "id": "c77c6d74-d71a-4c70-8620-2cda8c78c908",
          "name": "POST /api/veiculos",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{token}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/veiculos",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "veiculos"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "null",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": []
        },
        {
          "id": "34a5bc95-1751-48d6-8b20-f1ecd0e68d0b",
          "name": "GET /api/veiculos/{id}",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{token}}",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/veiculos/{id}",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "veiculos",
                "{id}"
              ]
            }
          },
          "response": []
        },
        {
          "id": "d82b4a33-62e4-488b-a5a3-f4d504d49ada",
          "name": "PUT /api/veiculos/{id}",
          "request": {
            "method": "PUT",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{token}}",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/veiculos/{id}",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "veiculos",
                "{id}"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "null",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": []
        },
        {
          "id": "ddec0a03-32df-489b-9071-cc1dadbf6b75",
          "name": "DELETE /api/veiculos/{id}",
          "request": {
            "method": "DELETE",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{token}}",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/veiculos/{id}",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "veiculos",
                "{id}"
              ]
            }
          },
          "response": []
        }
      ]
    }
  ],
  "variable": [
    {
      "key": "base_url",
      "value": "https://api.app.hooked.com.br",
      "type": "string"
    },
    {
      "key": "token",
      "value": "",
      "type": "string"
    }
  ]
}