{
  "info": {
    "name": "Huggy API v3 (PT)",
    "description": "Coleção gerada a partir da documentação oficial.",
    "schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json"
  },
  "item": [
    {
      "name": "Chats",
      "item": [
        {
          "name": "Visualizar todos os chats",
          "request": {
            "method": "GET",
            "description": "Este endpoint possui parâmetros opcionais para obtermos os dados de um chat de acordo a sua situação.",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              },
              {
                "key": "Accept",
                "value": "application/json"
              }
            ],
            "auth": {
              "type": "bearer",
              "bearer": [
                {
                  "key": "token",
                  "value": "{{token}}",
                  "type": "string"
                }
              ]
            },
            "url": {
              "raw": "{{baseUrl}}/companies/{{companyId}}/chats",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "companies",
                "{{companyId}}",
                "chats"
              ],
              "variable": [],
              "query": [
                {
                  "key": "agent",
                  "value": "",
                  "description": "ID do agente"
                },
                {
                  "key": "department",
                  "value": "",
                  "description": "ID do departamento"
                },
                {
                  "key": "customer",
                  "value": "",
                  "description": "ID do cliente"
                },
                {
                  "key": "situation",
                  "value": "",
                  "description": "Situação do chat"
                },
                {
                  "key": "status",
                  "value": "",
                  "description": "Status do chat"
                },
                {
                  "key": "channel",
                  "value": "",
                  "description": "Filtro por canais (ex: whatsapp, telegram-bot, messenger, email)"
                }
              ]
            }
          }
        },
        {
          "name": "Visualizar os detalhes de um chat",
          "request": {
            "method": "GET",
            "description": "Obtém os dados detalhados de um chat a partir de seu ID.",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              },
              {
                "key": "Accept",
                "value": "application/json"
              }
            ],
            "auth": {
              "type": "bearer",
              "bearer": [
                {
                  "key": "token",
                  "value": "{{token}}",
                  "type": "string"
                }
              ]
            },
            "url": {
              "raw": "{{baseUrl}}/companies/{{companyId}}/chats/:id",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "companies",
                "{{companyId}}",
                "chats",
                ":id"
              ],
              "variable": [
                {
                  "key": "id",
                  "value": "",
                  "description": "Identificador do chat"
                }
              ],
              "query": []
            }
          }
        },
        {
          "name": "Visualizar as mensagens de um chat",
          "request": {
            "method": "GET",
            "description": "Obtém a mensagem de um chat específico a partir de seu ID.",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              },
              {
                "key": "Accept",
                "value": "application/json"
              }
            ],
            "auth": {
              "type": "bearer",
              "bearer": [
                {
                  "key": "token",
                  "value": "{{token}}",
                  "type": "string"
                }
              ]
            },
            "url": {
              "raw": "{{baseUrl}}/companies/{{companyId}}/chats/:id/messages",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "companies",
                "{{companyId}}",
                "chats",
                ":id",
                "messages"
              ],
              "variable": [
                {
                  "key": "id",
                  "value": "",
                  "description": "Identificador do chat"
                }
              ],
              "query": [
                {
                  "key": "showEvents",
                  "value": "",
                  "description": "Exibe as mensagens de eventos internos do chat"
                }
              ]
            }
          }
        },
        {
          "name": "Visualizar as tags de um chat",
          "request": {
            "method": "GET",
            "description": "Obtém a lista de tags adicionadas a um chat.",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              },
              {
                "key": "Accept",
                "value": "application/json"
              }
            ],
            "auth": {
              "type": "bearer",
              "bearer": [
                {
                  "key": "token",
                  "value": "{{token}}",
                  "type": "string"
                }
              ]
            },
            "url": {
              "raw": "{{baseUrl}}/companies/{{companyId}}/chats/:id/tags",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "companies",
                "{{companyId}}",
                "chats",
                ":id",
                "tags"
              ],
              "variable": [
                {
                  "key": "id",
                  "value": "",
                  "description": "Identificador do chat"
                }
              ],
              "query": []
            }
          }
        },
        {
          "name": "Visualizar o ID de um agente",
          "request": {
            "method": "GET",
            "description": "Obtém o Nome e o ID de um agente a partir do número ID do chat.",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              },
              {
                "key": "Accept",
                "value": "application/json"
              }
            ],
            "auth": {
              "type": "bearer",
              "bearer": [
                {
                  "key": "token",
                  "value": "{{token}}",
                  "type": "string"
                }
              ]
            },
            "url": {
              "raw": "{{baseUrl}}/companies/{{companyId}}/chats/:id/agents",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "companies",
                "{{companyId}}",
                "chats",
                ":id",
                "agents"
              ],
              "variable": [
                {
                  "key": "id",
                  "value": "",
                  "description": "Identificador do chat"
                }
              ],
              "query": []
            }
          }
        },
        {
          "name": "Obter variáveis de contexto",
          "request": {
            "method": "GET",
            "description": "Obtém as variáveis de contexto do chat.",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              },
              {
                "key": "Accept",
                "value": "application/json"
              }
            ],
            "auth": {
              "type": "bearer",
              "bearer": [
                {
                  "key": "token",
                  "value": "{{token}}",
                  "type": "string"
                }
              ]
            },
            "url": {
              "raw": "{{baseUrl}}/companies/{{companyId}}/chats/:id/contextVariables",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "companies",
                "{{companyId}}",
                "chats",
                ":id",
                "contextVariables"
              ],
              "variable": [
                {
                  "key": "id",
                  "value": "",
                  "description": "Identificador do chat"
                }
              ],
              "query": []
            }
          }
        },
        {
          "name": "Adicionar nova mensagem em um chat",
          "request": {
            "method": "POST",
            "description": "Adiciona uma nova mensagem passando chave e valor no corpo da requisição.",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              },
              {
                "key": "Accept",
                "value": "application/json"
              }
            ],
            "auth": {
              "type": "bearer",
              "bearer": [
                {
                  "key": "token",
                  "value": "{{token}}",
                  "type": "string"
                }
              ]
            },
            "url": {
              "raw": "{{baseUrl}}/companies/{{companyId}}/chats/:id/messages",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "companies",
                "{{companyId}}",
                "chats",
                ":id",
                "messages"
              ],
              "variable": [
                {
                  "key": "id",
                  "value": "",
                  "description": "Identificador do chat"
                }
              ],
              "query": []
            },
            "body": {
              "mode": "raw",
              "raw": "{\n  \"text\": \"<string>\",\n  \"fileBase64\": \"<string>\",\n  \"options\": \"<array>\",\n  \"file\": \"<string>\",\n  \"isInternal\": \"<boolean>\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          }
        },
        {
          "name": "Transferir um chat para outro agente",
          "request": {
            "method": "POST",
            "description": "Transfere um chat para outro agente.",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              },
              {
                "key": "Accept",
                "value": "application/json"
              }
            ],
            "auth": {
              "type": "bearer",
              "bearer": [
                {
                  "key": "token",
                  "value": "{{token}}",
                  "type": "string"
                }
              ]
            },
            "url": {
              "raw": "{{baseUrl}}/companies/{{companyId}}/chats/:id/transfer",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "companies",
                "{{companyId}}",
                "chats",
                ":id",
                "transfer"
              ],
              "variable": [
                {
                  "key": "id",
                  "value": "",
                  "description": "Identificador do chat"
                }
              ],
              "query": []
            },
            "body": {
              "mode": "raw",
              "raw": "{\n  \"agentId\": \"<integer>\",\n  \"message\": \"<string>\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          }
        },
        {
          "name": "Executar flow",
          "request": {
            "method": "POST",
            "description": "Execute um Flow a partir de um chat que não esteja finalizado ou que não seja do tipo interno.",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              },
              {
                "key": "Accept",
                "value": "application/json"
              }
            ],
            "auth": {
              "type": "bearer",
              "bearer": [
                {
                  "key": "token",
                  "value": "{{token}}",
                  "type": "string"
                }
              ]
            },
            "url": {
              "raw": "{{baseUrl}}/companies/{{companyId}}/chats/:id/flow",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "companies",
                "{{companyId}}",
                "chats",
                ":id",
                "flow"
              ],
              "variable": [
                {
                  "key": "id",
                  "value": "",
                  "description": "Identificador do chat"
                }
              ],
              "query": []
            },
            "body": {
              "mode": "raw",
              "raw": "{\n  \"flowId\": \"<integer>\",\n  \"variables\": \"<object>\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          }
        },
        {
          "name": "Adicionar um agente",
          "request": {
            "method": "PUT",
            "description": "Adiciona um agente ao chat.",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              },
              {
                "key": "Accept",
                "value": "application/json"
              }
            ],
            "auth": {
              "type": "bearer",
              "bearer": [
                {
                  "key": "token",
                  "value": "{{token}}",
                  "type": "string"
                }
              ]
            },
            "url": {
              "raw": "{{baseUrl}}/companies/{{companyId}}/chats/:id/agent",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "companies",
                "{{companyId}}",
                "chats",
                ":id",
                "agent"
              ],
              "variable": [
                {
                  "key": "id",
                  "value": "",
                  "description": "Identificador do chat"
                }
              ],
              "query": []
            },
            "body": {
              "mode": "raw",
              "raw": "{\n  \"agentId\": \"<integer>\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          }
        },
        {
          "name": "Marcar mensagem como lida",
          "request": {
            "method": "PUT",
            "description": "Marca leitura na mensagem do chat informado.",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              },
              {
                "key": "Accept",
                "value": "application/json"
              }
            ],
            "auth": {
              "type": "bearer",
              "bearer": [
                {
                  "key": "token",
                  "value": "{{token}}",
                  "type": "string"
                }
              ]
            },
            "url": {
              "raw": "{{baseUrl}}/companies/{{companyId}}/chats/:id/read",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "companies",
                "{{companyId}}",
                "chats",
                ":id",
                "read"
              ],
              "variable": [
                {
                  "key": "id",
                  "value": "",
                  "description": "Identificador do chat"
                }
              ],
              "query": []
            }
          }
        },
        {
          "name": "Atualizar a tabulação de um chat",
          "request": {
            "method": "PUT",
            "description": "Permite atualizar a tabulação de um chat.",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              },
              {
                "key": "Accept",
                "value": "application/json"
              }
            ],
            "auth": {
              "type": "bearer",
              "bearer": [
                {
                  "key": "token",
                  "value": "{{token}}",
                  "type": "string"
                }
              ]
            },
            "url": {
              "raw": "{{baseUrl}}/companies/{{companyId}}/chats/:id/tabulation",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "companies",
                "{{companyId}}",
                "chats",
                ":id",
                "tabulation"
              ],
              "variable": [
                {
                  "key": "id",
                  "value": "",
                  "description": "Identificador do chat"
                }
              ],
              "query": []
            },
            "body": {
              "mode": "raw",
              "raw": "{\n  \"tabulationId\": \"<integer>\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          }
        },
        {
          "name": "Atualizar tags do chat",
          "request": {
            "method": "PUT",
            "description": "Permite realizar alterações nas tags de um chat específico.",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              },
              {
                "key": "Accept",
                "value": "application/json"
              }
            ],
            "auth": {
              "type": "bearer",
              "bearer": [
                {
                  "key": "token",
                  "value": "{{token}}",
                  "type": "string"
                }
              ]
            },
            "url": {
              "raw": "{{baseUrl}}/companies/{{companyId}}/chats/:id/tags",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "companies",
                "{{companyId}}",
                "chats",
                ":id",
                "tags"
              ],
              "variable": [
                {
                  "key": "id",
                  "value": "",
                  "description": "Identificador do chat"
                }
              ],
              "query": []
            },
            "body": {
              "mode": "raw",
              "raw": "{\n  \"tags\": \"<string>\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          }
        },
        {
          "name": "Mover para a fila",
          "request": {
            "method": "PUT",
            "description": "Move um chat para a fila.",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              },
              {
                "key": "Accept",
                "value": "application/json"
              }
            ],
            "auth": {
              "type": "bearer",
              "bearer": [
                {
                  "key": "token",
                  "value": "{{token}}",
                  "type": "string"
                }
              ]
            },
            "url": {
              "raw": "{{baseUrl}}/companies/{{companyId}}/chats/:id/queue",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "companies",
                "{{companyId}}",
                "chats",
                ":id",
                "queue"
              ],
              "variable": [
                {
                  "key": "id",
                  "value": "",
                  "description": "Identificador do chat"
                }
              ],
              "query": []
            }
          }
        },
        {
          "name": "Atribuir um departamento ao chat",
          "request": {
            "method": "PUT",
            "description": "Atribui um departamento a um chat.",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              },
              {
                "key": "Accept",
                "value": "application/json"
              }
            ],
            "auth": {
              "type": "bearer",
              "bearer": [
                {
                  "key": "token",
                  "value": "{{token}}",
                  "type": "string"
                }
              ]
            },
            "url": {
              "raw": "{{baseUrl}}/companies/{{companyId}}/chats/:id/department",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "companies",
                "{{companyId}}",
                "chats",
                ":id",
                "department"
              ],
              "variable": [
                {
                  "key": "id",
                  "value": "",
                  "description": "Identificador do chat"
                }
              ],
              "query": []
            },
            "body": {
              "mode": "raw",
              "raw": "{\n  \"department\": \"<integer>\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          }
        },
        {
          "name": "Fechar um chat",
          "request": {
            "method": "PUT",
            "description": "Fecha um chat, passando seu ID como parâmetro.",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              },
              {
                "key": "Accept",
                "value": "application/json"
              }
            ],
            "auth": {
              "type": "bearer",
              "bearer": [
                {
                  "key": "token",
                  "value": "{{token}}",
                  "type": "string"
                }
              ]
            },
            "url": {
              "raw": "{{baseUrl}}/companies/{{companyId}}/chats/:id/close",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "companies",
                "{{companyId}}",
                "chats",
                ":id",
                "close"
              ],
              "variable": [
                {
                  "key": "id",
                  "value": "",
                  "description": "Identificador do chat"
                }
              ],
              "query": []
            },
            "body": {
              "mode": "raw",
              "raw": "{\n  \"tabulation\": \"<integer>\",\n  \"comment\": \"<string>\",\n  \"sendFeedback\": \"<boolean>\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          }
        },
        {
          "name": "Reabrir um chat",
          "request": {
            "method": "PUT",
            "description": "Faz a reabertura de um chat.",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              },
              {
                "key": "Accept",
                "value": "application/json"
              }
            ],
            "auth": {
              "type": "bearer",
              "bearer": [
                {
                  "key": "token",
                  "value": "{{token}}",
                  "type": "string"
                }
              ]
            },
            "url": {
              "raw": "{{baseUrl}}/companies/{{companyId}}/chats/:id/reopen",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "companies",
                "{{companyId}}",
                "chats",
                ":id",
                "reopen"
              ],
              "variable": [
                {
                  "key": "id",
                  "value": "",
                  "description": "Identificador do chat"
                }
              ],
              "query": []
            }
          }
        },
        {
          "name": "Atualizar a etapa do Workflow do chat",
          "request": {
            "method": "PUT",
            "description": "Atualiza a etapa de um Workflow de um chat.",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              },
              {
                "key": "Accept",
                "value": "application/json"
              }
            ],
            "auth": {
              "type": "bearer",
              "bearer": [
                {
                  "key": "token",
                  "value": "{{token}}",
                  "type": "string"
                }
              ]
            },
            "url": {
              "raw": "{{baseUrl}}/companies/{{companyId}}/chats/:id/workflow",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "companies",
                "{{companyId}}",
                "chats",
                ":id",
                "workflow"
              ],
              "variable": [
                {
                  "key": "id",
                  "value": "",
                  "description": "Identificador do chat"
                }
              ],
              "query": []
            },
            "body": {
              "mode": "raw",
              "raw": "{\n  \"stepId\": \"<integer>\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          }
        },
        {
          "name": "Atribui o chat ao agente",
          "request": {
            "method": "PUT",
            "description": "Atribui o chat ao agente da company.",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              },
              {
                "key": "Accept",
                "value": "application/json"
              }
            ],
            "auth": {
              "type": "bearer",
              "bearer": [
                {
                  "key": "token",
                  "value": "{{token}}",
                  "type": "string"
                }
              ]
            },
            "url": {
              "raw": "{{baseUrl}}/companies/{{companyId}}/chats/:id/assignToMe",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "companies",
                "{{companyId}}",
                "chats",
                ":id",
                "assignToMe"
              ],
              "variable": [
                {
                  "key": "id",
                  "value": "",
                  "description": "Identificador do chat"
                }
              ],
              "query": []
            }
          }
        },
        {
          "name": "Excluir um chat",
          "request": {
            "method": "DELETE",
            "description": "Exclui um chat a partir do seu ID.",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              },
              {
                "key": "Accept",
                "value": "application/json"
              }
            ],
            "auth": {
              "type": "bearer",
              "bearer": [
                {
                  "key": "token",
                  "value": "{{token}}",
                  "type": "string"
                }
              ]
            },
            "url": {
              "raw": "{{baseUrl}}/companies/{{companyId}}/chats/:id",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "companies",
                "{{companyId}}",
                "chats",
                ":id"
              ],
              "variable": [
                {
                  "key": "id",
                  "value": "",
                  "description": "Identificador do chat"
                }
              ],
              "query": []
            }
          }
        }
      ]
    },
    {
      "name": "Agentes",
      "item": [
        {
          "name": "Visualizar todos os agentes",
          "request": {
            "method": "GET",
            "description": "Obtém informações de todos os agentes cadastrados.",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              },
              {
                "key": "Accept",
                "value": "application/json"
              }
            ],
            "auth": {
              "type": "bearer",
              "bearer": [
                {
                  "key": "token",
                  "value": "{{token}}",
                  "type": "string"
                }
              ]
            },
            "url": {
              "raw": "{{baseUrl}}/companies/{{companyId}}/agents",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "companies",
                "{{companyId}}",
                "agents"
              ],
              "variable": [],
              "query": [
                {
                  "key": "allPages",
                  "value": "",
                  "description": "Retornar todos os registros de uma vez"
                }
              ]
            }
          }
        },
        {
          "name": "Visualizar o perfil do agente",
          "request": {
            "method": "GET",
            "description": "Obtém os dados do perfil do agente logado.",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              },
              {
                "key": "Accept",
                "value": "application/json"
              }
            ],
            "auth": {
              "type": "bearer",
              "bearer": [
                {
                  "key": "token",
                  "value": "{{token}}",
                  "type": "string"
                }
              ]
            },
            "url": {
              "raw": "{{baseUrl}}/companies/{{companyId}}/agents/profile",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "companies",
                "{{companyId}}",
                "agents",
                "profile"
              ],
              "variable": [],
              "query": []
            }
          }
        },
        {
          "name": "Visualizar dados de um agente",
          "request": {
            "method": "GET",
            "description": "Obtém os dados de um agente específico.",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              },
              {
                "key": "Accept",
                "value": "application/json"
              }
            ],
            "auth": {
              "type": "bearer",
              "bearer": [
                {
                  "key": "token",
                  "value": "{{token}}",
                  "type": "string"
                }
              ]
            },
            "url": {
              "raw": "{{baseUrl}}/companies/{{companyId}}/agents/:id",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "companies",
                "{{companyId}}",
                "agents",
                ":id"
              ],
              "variable": [
                {
                  "key": "id",
                  "value": "",
                  "description": "Identificador do agente"
                }
              ],
              "query": []
            }
          }
        },
        {
          "name": "Visualizar o status do agente",
          "request": {
            "method": "GET",
            "description": "Obtém o status de um agente.",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              },
              {
                "key": "Accept",
                "value": "application/json"
              }
            ],
            "auth": {
              "type": "bearer",
              "bearer": [
                {
                  "key": "token",
                  "value": "{{token}}",
                  "type": "string"
                }
              ]
            },
            "url": {
              "raw": "{{baseUrl}}/companies/{{companyId}}/agents/:id/status",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "companies",
                "{{companyId}}",
                "agents",
                ":id",
                "status"
              ],
              "variable": [
                {
                  "key": "id",
                  "value": "",
                  "description": "Identificador do agente"
                }
              ],
              "query": []
            }
          }
        },
        {
          "name": "Convidar um novo agente",
          "request": {
            "method": "POST",
            "description": "Convida um novo agente definindo email, máximo de chats e tipo.",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              },
              {
                "key": "Accept",
                "value": "application/json"
              }
            ],
            "auth": {
              "type": "bearer",
              "bearer": [
                {
                  "key": "token",
                  "value": "{{token}}",
                  "type": "string"
                }
              ]
            },
            "url": {
              "raw": "{{baseUrl}}/companies/{{companyId}}/agents",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "companies",
                "{{companyId}}",
                "agents"
              ],
              "variable": [],
              "query": []
            },
            "body": {
              "mode": "raw",
              "raw": "{\n  \"email\": \"<string>\",\n  \"maxChats\": \"<integer>\",\n  \"type\": \"<integer>\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          }
        },
        {
          "name": "Atualizar o status do agente",
          "request": {
            "method": "PUT",
            "description": "Altera o status do agente logado.",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              },
              {
                "key": "Accept",
                "value": "application/json"
              }
            ],
            "auth": {
              "type": "bearer",
              "bearer": [
                {
                  "key": "token",
                  "value": "{{token}}",
                  "type": "string"
                }
              ]
            },
            "url": {
              "raw": "{{baseUrl}}/companies/{{companyId}}/agents/status",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "companies",
                "{{companyId}}",
                "agents",
                "status"
              ],
              "variable": [],
              "query": []
            },
            "body": {
              "mode": "raw",
              "raw": "{\n  \"id\": \"<integer>\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          }
        },
        {
          "name": "Atualizar um agente",
          "request": {
            "method": "PUT",
            "description": "Permite atualizar as informações do agente.",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              },
              {
                "key": "Accept",
                "value": "application/json"
              }
            ],
            "auth": {
              "type": "bearer",
              "bearer": [
                {
                  "key": "token",
                  "value": "{{token}}",
                  "type": "string"
                }
              ]
            },
            "url": {
              "raw": "{{baseUrl}}/companies/{{companyId}}/agents/:id",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "companies",
                "{{companyId}}",
                "agents",
                ":id"
              ],
              "variable": [
                {
                  "key": "id",
                  "value": "",
                  "description": "Identificador do agente"
                }
              ],
              "query": []
            },
            "body": {
              "mode": "raw",
              "raw": "{\n  \"name\": \"<string>\",\n  \"login\": \"<string>\",\n  \"email\": \"<string>\",\n  \"password\": \"<string>\",\n  \"type\": \"<integer>\",\n  \"phone\": \"<string>\",\n  \"active\": \"<boolean>\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          }
        }
      ]
    },
    {
      "name": "Contatos",
      "item": [
        {
          "name": "Visualizar todos os contatos",
          "request": {
            "method": "GET",
            "description": "Obtém os dados de todos os contatos cadastrados.",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              },
              {
                "key": "Accept",
                "value": "application/json"
              }
            ],
            "auth": {
              "type": "bearer",
              "bearer": [
                {
                  "key": "token",
                  "value": "{{token}}",
                  "type": "string"
                }
              ]
            },
            "url": {
              "raw": "{{baseUrl}}/companies/{{companyId}}/contacts",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "companies",
                "{{companyId}}",
                "contacts"
              ],
              "variable": [],
              "query": [
                {
                  "key": "email",
                  "value": "",
                  "description": "Email do contato"
                },
                {
                  "key": "phone",
                  "value": "",
                  "description": "Telefone do contato"
                }
              ]
            }
          }
        },
        {
          "name": "Visualizar um contato",
          "request": {
            "method": "GET",
            "description": "Obtém os dados de um contato específico.",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              },
              {
                "key": "Accept",
                "value": "application/json"
              }
            ],
            "auth": {
              "type": "bearer",
              "bearer": [
                {
                  "key": "token",
                  "value": "{{token}}",
                  "type": "string"
                }
              ]
            },
            "url": {
              "raw": "{{baseUrl}}/companies/{{companyId}}/contacts/:id",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "companies",
                "{{companyId}}",
                "contacts",
                ":id"
              ],
              "variable": [
                {
                  "key": "id",
                  "value": "",
                  "description": "Identificador do contato"
                }
              ],
              "query": []
            }
          }
        },
        {
          "name": "Visualizar a timeline de um contato",
          "request": {
            "method": "GET",
            "description": "Obtém os dados da timeline e eventos associados a um contato.",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              },
              {
                "key": "Accept",
                "value": "application/json"
              }
            ],
            "auth": {
              "type": "bearer",
              "bearer": [
                {
                  "key": "token",
                  "value": "{{token}}",
                  "type": "string"
                }
              ]
            },
            "url": {
              "raw": "{{baseUrl}}/companies/{{companyId}}/contacts/:id/timeline",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "companies",
                "{{companyId}}",
                "contacts",
                ":id",
                "timeline"
              ],
              "variable": [
                {
                  "key": "id",
                  "value": "",
                  "description": "Identificador do contato"
                }
              ],
              "query": []
            }
          }
        },
        {
          "name": "Visualizar o grupo do contato",
          "request": {
            "method": "GET",
            "description": "Obtém os dados do grupo ao qual o contato pertence.",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              },
              {
                "key": "Accept",
                "value": "application/json"
              }
            ],
            "auth": {
              "type": "bearer",
              "bearer": [
                {
                  "key": "token",
                  "value": "{{token}}",
                  "type": "string"
                }
              ]
            },
            "url": {
              "raw": "{{baseUrl}}/companies/{{companyId}}/contacts/:id/groups",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "companies",
                "{{companyId}}",
                "contacts",
                ":id",
                "groups"
              ],
              "variable": [
                {
                  "key": "id",
                  "value": "",
                  "description": "Identificador do contato"
                }
              ],
              "query": []
            }
          }
        },
        {
          "name": "Visualizar a organização do contato",
          "request": {
            "method": "GET",
            "description": "Obtém os dados da organização a qual o contato pertence.",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              },
              {
                "key": "Accept",
                "value": "application/json"
              }
            ],
            "auth": {
              "type": "bearer",
              "bearer": [
                {
                  "key": "token",
                  "value": "{{token}}",
                  "type": "string"
                }
              ]
            },
            "url": {
              "raw": "{{baseUrl}}/companies/{{companyId}}/contacts/:id/organizations",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "companies",
                "{{companyId}}",
                "contacts",
                ":id",
                "organizations"
              ],
              "variable": [
                {
                  "key": "id",
                  "value": "",
                  "description": "Identificador do contato"
                }
              ],
              "query": []
            }
          }
        },
        {
          "name": "Visualizar um campo personalizado",
          "request": {
            "method": "GET",
            "description": "Obtém os campos personalizados criados para o contato.",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              },
              {
                "key": "Accept",
                "value": "application/json"
              }
            ],
            "auth": {
              "type": "bearer",
              "bearer": [
                {
                  "key": "token",
                  "value": "{{token}}",
                  "type": "string"
                }
              ]
            },
            "url": {
              "raw": "{{baseUrl}}/companies/{{companyId}}/contacts/:id/customFields",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "companies",
                "{{companyId}}",
                "contacts",
                ":id",
                "customFields"
              ],
              "variable": [
                {
                  "key": "id",
                  "value": "",
                  "description": "Identificador do contato"
                }
              ],
              "query": []
            }
          }
        },
        {
          "name": "Visualizar associação de contatos",
          "request": {
            "method": "GET",
            "description": "Obtém os dados do contato associado (contato principal).",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              },
              {
                "key": "Accept",
                "value": "application/json"
              }
            ],
            "auth": {
              "type": "bearer",
              "bearer": [
                {
                  "key": "token",
                  "value": "{{token}}",
                  "type": "string"
                }
              ]
            },
            "url": {
              "raw": "{{baseUrl}}/companies/{{companyId}}/contacts/:id/linkedContacts",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "companies",
                "{{companyId}}",
                "contacts",
                ":id",
                "linkedContacts"
              ],
              "variable": [
                {
                  "key": "id",
                  "value": "",
                  "description": "Identificador do contato"
                }
              ],
              "query": []
            }
          }
        },
        {
          "name": "Criar contato",
          "request": {
            "method": "POST",
            "description": "Cria um novo contato na plataforma.",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              },
              {
                "key": "Accept",
                "value": "application/json"
              }
            ],
            "auth": {
              "type": "bearer",
              "bearer": [
                {
                  "key": "token",
                  "value": "{{token}}",
                  "type": "string"
                }
              ]
            },
            "url": {
              "raw": "{{baseUrl}}/companies/{{companyId}}/contacts",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "companies",
                "{{companyId}}",
                "contacts"
              ],
              "variable": [],
              "query": []
            },
            "body": {
              "mode": "raw",
              "raw": "{\n  \"name\": \"<string>\",\n  \"email\": \"<string>\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          }
        },
        {
          "name": "Criar um chat a partir do ID de um contato",
          "request": {
            "method": "POST",
            "description": "Cria um chat a partir do ID do contato informando o UUID do canal.",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              },
              {
                "key": "Accept",
                "value": "application/json"
              }
            ],
            "auth": {
              "type": "bearer",
              "bearer": [
                {
                  "key": "token",
                  "value": "{{token}}",
                  "type": "string"
                }
              ]
            },
            "url": {
              "raw": "{{baseUrl}}/companies/{{companyId}}/contacts/:id/chats",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "companies",
                "{{companyId}}",
                "contacts",
                ":id",
                "chats"
              ],
              "variable": [
                {
                  "key": "id",
                  "value": "",
                  "description": "Identificador do contato"
                }
              ],
              "query": []
            },
            "body": {
              "mode": "raw",
              "raw": "{\n  \"channelUuid\": \"<string>\",\n  \"subject\": \"<string>\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          }
        },
        {
          "name": "Criar comentário na linha do tempo",
          "request": {
            "method": "POST",
            "description": "Cria um comentário na linha do tempo do contato.",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              },
              {
                "key": "Accept",
                "value": "application/json"
              }
            ],
            "auth": {
              "type": "bearer",
              "bearer": [
                {
                  "key": "token",
                  "value": "{{token}}",
                  "type": "string"
                }
              ]
            },
            "url": {
              "raw": "{{baseUrl}}/companies/{{companyId}}/timeline/createComment/:id",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "companies",
                "{{companyId}}",
                "timeline",
                "createComment",
                ":id"
              ],
              "variable": [
                {
                  "key": "id",
                  "value": "",
                  "description": "Identificador do contato"
                }
              ],
              "query": []
            },
            "body": {
              "mode": "raw",
              "raw": "{\n  \"comment\": \"<string>\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          }
        },
        {
          "name": "Atualizar um contato",
          "request": {
            "method": "PUT",
            "description": "Atualiza um contato a partir do seu ID.",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              },
              {
                "key": "Accept",
                "value": "application/json"
              }
            ],
            "auth": {
              "type": "bearer",
              "bearer": [
                {
                  "key": "token",
                  "value": "{{token}}",
                  "type": "string"
                }
              ]
            },
            "url": {
              "raw": "{{baseUrl}}/companies/{{companyId}}/contacts/:id",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "companies",
                "{{companyId}}",
                "contacts",
                ":id"
              ],
              "variable": [
                {
                  "key": "id",
                  "value": "",
                  "description": "Identificador do contato"
                }
              ],
              "query": []
            },
            "body": {
              "mode": "raw",
              "raw": "{\n  \"name\": \"<string>\",\n  \"gender\": \"<string>\",\n  \"email\": \"<string>\",\n  \"phone\": \"<string>\",\n  \"mobile\": \"<string>\",\n  \"birthDate\": \"<string>\",\n  \"address\": \"<string>\",\n  \"city\": \"<string>\",\n  \"district\": \"<string>\",\n  \"state\": \"<string>\",\n  \"zipCode\": \"<string>\",\n  \"obs\": \"<string>\",\n  \"groupsID\": \"<array>\",\n  \"organization\": \"<integer>\",\n  \"organizationsID\": \"<array>\",\n  \"custom_fields\": \"<object>\",\n  \"linksID\": \"<array>\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          }
        },
        {
          "name": "Executar um Flow para um contato",
          "request": {
            "method": "PUT",
            "description": "Inicializa a execução de um Flow para um contato específico.",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              },
              {
                "key": "Accept",
                "value": "application/json"
              }
            ],
            "auth": {
              "type": "bearer",
              "bearer": [
                {
                  "key": "token",
                  "value": "{{token}}",
                  "type": "string"
                }
              ]
            },
            "url": {
              "raw": "{{baseUrl}}/companies/{{companyId}}/contacts/:contactId/execFlow",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "companies",
                "{{companyId}}",
                "contacts",
                ":contactId",
                "execFlow"
              ],
              "variable": [
                {
                  "key": "contactId",
                  "value": "",
                  "description": "Identificador do contato"
                }
              ],
              "query": []
            },
            "body": {
              "mode": "raw",
              "raw": "{\n  \"uuid\": \"<string>\",\n  \"flowId\": \"<integer>\",\n  \"variables\": \"<object>\",\n  \"whenInChat\": \"<boolean>\",\n  \"whenWaitForChat\": \"<boolean>\",\n  \"whenInAuto\": \"<boolean>\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          }
        },
        {
          "name": "Excluir um contato",
          "request": {
            "method": "DELETE",
            "description": "Exclui um contato a partir do seu ID.",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              },
              {
                "key": "Accept",
                "value": "application/json"
              }
            ],
            "auth": {
              "type": "bearer",
              "bearer": [
                {
                  "key": "token",
                  "value": "{{token}}",
                  "type": "string"
                }
              ]
            },
            "url": {
              "raw": "{{baseUrl}}/companies/{{companyId}}/contacts/:id",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "companies",
                "{{companyId}}",
                "contacts",
                ":id"
              ],
              "variable": [
                {
                  "key": "id",
                  "value": "",
                  "description": "Identificador do contato"
                }
              ],
              "query": []
            }
          }
        }
      ]
    },
    {
      "name": "Campos Personalizados",
      "item": [
        {
          "name": "Visualizar todos os campos personalizados",
          "request": {
            "method": "GET",
            "description": "Obtém a lista de todos os campos personalizados da organização.",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              },
              {
                "key": "Accept",
                "value": "application/json"
              }
            ],
            "auth": {
              "type": "bearer",
              "bearer": [
                {
                  "key": "token",
                  "value": "{{token}}",
                  "type": "string"
                }
              ]
            },
            "url": {
              "raw": "{{baseUrl}}/companies/{{companyId}}/customFields",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "companies",
                "{{companyId}}",
                "customFields"
              ],
              "variable": [],
              "query": []
            }
          }
        }
      ]
    },
    {
      "name": "Departamentos",
      "item": [
        {
          "name": "Visualizar todos os departamentos",
          "request": {
            "method": "GET",
            "description": "Obtém a lista de todos os departamentos criados na empresa.",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              },
              {
                "key": "Accept",
                "value": "application/json"
              }
            ],
            "auth": {
              "type": "bearer",
              "bearer": [
                {
                  "key": "token",
                  "value": "{{token}}",
                  "type": "string"
                }
              ]
            },
            "url": {
              "raw": "{{baseUrl}}/companies/{{companyId}}/departments",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "companies",
                "{{companyId}}",
                "departments"
              ],
              "variable": [],
              "query": [
                {
                  "key": "allPages",
                  "value": "",
                  "description": "Retornar todos os registros"
                }
              ]
            }
          }
        },
        {
          "name": "Visualizar todos os departamentos pai",
          "request": {
            "method": "GET",
            "description": "Obtém a lista de todos os departamentos Pai.",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              },
              {
                "key": "Accept",
                "value": "application/json"
              }
            ],
            "auth": {
              "type": "bearer",
              "bearer": [
                {
                  "key": "token",
                  "value": "{{token}}",
                  "type": "string"
                }
              ]
            },
            "url": {
              "raw": "{{baseUrl}}/companies/{{companyId}}/departments/parents",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "companies",
                "{{companyId}}",
                "departments",
                "parents"
              ],
              "variable": [],
              "query": []
            }
          }
        },
        {
          "name": "Visualizar um departamento",
          "request": {
            "method": "GET",
            "description": "Obtém as informações do departamento cadastrado.",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              },
              {
                "key": "Accept",
                "value": "application/json"
              }
            ],
            "auth": {
              "type": "bearer",
              "bearer": [
                {
                  "key": "token",
                  "value": "{{token}}",
                  "type": "string"
                }
              ]
            },
            "url": {
              "raw": "{{baseUrl}}/companies/{{companyId}}/departments/:id",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "companies",
                "{{companyId}}",
                "departments",
                ":id"
              ],
              "variable": [
                {
                  "key": "id",
                  "value": "",
                  "description": "Identificador do departamento"
                }
              ],
              "query": []
            }
          }
        }
      ]
    },
    {
      "name": "Tags",
      "item": [
        {
          "name": "Deletar tags",
          "request": {
            "method": "DELETE",
            "description": "Deleta uma tag por meio de seu ID.",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              },
              {
                "key": "Accept",
                "value": "application/json"
              }
            ],
            "auth": {
              "type": "bearer",
              "bearer": [
                {
                  "key": "token",
                  "value": "{{token}}",
                  "type": "string"
                }
              ]
            },
            "url": {
              "raw": "{{baseUrl}}/companies/{{companyId}}/tags/:id",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "companies",
                "{{companyId}}",
                "tags",
                ":id"
              ],
              "variable": [
                {
                  "key": "id",
                  "value": "",
                  "description": "ID da tag"
                }
              ],
              "query": []
            }
          }
        },
        {
          "name": "Deletar lote de tags",
          "request": {
            "method": "DELETE",
            "description": "Deleta um lote de tags passando um array no corpo da requisição.",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              },
              {
                "key": "Accept",
                "value": "application/json"
              }
            ],
            "auth": {
              "type": "bearer",
              "bearer": [
                {
                  "key": "token",
                  "value": "{{token}}",
                  "type": "string"
                }
              ]
            },
            "url": {
              "raw": "{{baseUrl}}/companies/{{companyId}}/tags/batch",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "companies",
                "{{companyId}}",
                "tags",
                "batch"
              ],
              "variable": [],
              "query": []
            },
            "body": {
              "mode": "raw",
              "raw": "{\n  \"tags\": \"<array>\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          }
        }
      ]
    },
    {
      "name": "Tabulações",
      "item": [
        {
          "name": "Visualizar todas as tabulações",
          "request": {
            "method": "GET",
            "description": "Obtém a lista de todas as tabulações criadas.",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              },
              {
                "key": "Accept",
                "value": "application/json"
              }
            ],
            "auth": {
              "type": "bearer",
              "bearer": [
                {
                  "key": "token",
                  "value": "{{token}}",
                  "type": "string"
                }
              ]
            },
            "url": {
              "raw": "{{baseUrl}}/companies/{{companyId}}/tabulations",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "companies",
                "{{companyId}}",
                "tabulations"
              ],
              "variable": [],
              "query": [
                {
                  "key": "allPages",
                  "value": "",
                  "description": "Retornar todos os registros"
                }
              ]
            }
          }
        },
        {
          "name": "Visualizar uma tabulação",
          "request": {
            "method": "GET",
            "description": "Obtém os dados de uma tabulação.",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              },
              {
                "key": "Accept",
                "value": "application/json"
              }
            ],
            "auth": {
              "type": "bearer",
              "bearer": [
                {
                  "key": "token",
                  "value": "{{token}}",
                  "type": "string"
                }
              ]
            },
            "url": {
              "raw": "{{baseUrl}}/companies/{{companyId}}/tabulations/:id",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "companies",
                "{{companyId}}",
                "tabulations",
                ":id"
              ],
              "variable": [
                {
                  "key": "id",
                  "value": "",
                  "description": "Identificador da tabulação"
                }
              ],
              "query": []
            }
          }
        }
      ]
    },
    {
      "name": "Telegram Bot",
      "item": [
        {
          "name": "Visualizar todos os telegram bots",
          "request": {
            "method": "GET",
            "description": "Obtém a lista de todos os telegram bots cadastrados na plataforma Huggy.",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              },
              {
                "key": "Accept",
                "value": "application/json"
              }
            ],
            "auth": {
              "type": "bearer",
              "bearer": [
                {
                  "key": "token",
                  "value": "{{token}}",
                  "type": "string"
                }
              ]
            },
            "url": {
              "raw": "{{baseUrl}}/companies/{{companyId}}/telegramBot",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "companies",
                "{{companyId}}",
                "telegramBot"
              ],
              "variable": [],
              "query": []
            }
          }
        },
        {
          "name": "Visualizar um telegram bot",
          "request": {
            "method": "GET",
            "description": "Obtém os dados de um telegram bot.",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              },
              {
                "key": "Accept",
                "value": "application/json"
              }
            ],
            "auth": {
              "type": "bearer",
              "bearer": [
                {
                  "key": "token",
                  "value": "{{token}}",
                  "type": "string"
                }
              ]
            },
            "url": {
              "raw": "{{baseUrl}}/companies/{{companyId}}/telegramBot/:id",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "companies",
                "{{companyId}}",
                "telegramBot",
                ":id"
              ],
              "variable": [
                {
                  "key": "id",
                  "value": "",
                  "description": "Identificador do telegram bot"
                }
              ],
              "query": []
            }
          }
        },
        {
          "name": "Cadastrar um telegram bot",
          "request": {
            "method": "POST",
            "description": "Cadastrar um novo telegram bot na plataforma Huggy a partir do token.",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              },
              {
                "key": "Accept",
                "value": "application/json"
              }
            ],
            "auth": {
              "type": "bearer",
              "bearer": [
                {
                  "key": "token",
                  "value": "{{token}}",
                  "type": "string"
                }
              ]
            },
            "url": {
              "raw": "{{baseUrl}}/companies/{{companyId}}/telegramBot",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "companies",
                "{{companyId}}",
                "telegramBot"
              ],
              "variable": [],
              "query": []
            },
            "body": {
              "mode": "raw",
              "raw": "{\n  \"token\": \"<string>\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          }
        },
        {
          "name": "Atualiza um telegram bot",
          "request": {
            "method": "PUT",
            "description": "Atualiza o nome, flows de entrada e saída de um telegram bot.",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              },
              {
                "key": "Accept",
                "value": "application/json"
              }
            ],
            "auth": {
              "type": "bearer",
              "bearer": [
                {
                  "key": "token",
                  "value": "{{token}}",
                  "type": "string"
                }
              ]
            },
            "url": {
              "raw": "{{baseUrl}}/companies/{{companyId}}/telegramBot/:id",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "companies",
                "{{companyId}}",
                "telegramBot",
                ":id"
              ],
              "variable": [
                {
                  "key": "id",
                  "value": "",
                  "description": "Identificador do telegram bot"
                }
              ],
              "query": []
            },
            "body": {
              "mode": "raw",
              "raw": "{\n  \"name\": \"<string>\",\n  \"flowInID\": \"<integer>\",\n  \"flowOutID\": \"<integer>\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          }
        },
        {
          "name": "Deletar um telegram bot",
          "request": {
            "method": "DELETE",
            "description": "Exclui um telegram bot a partir de seu ID.",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              },
              {
                "key": "Accept",
                "value": "application/json"
              }
            ],
            "auth": {
              "type": "bearer",
              "bearer": [
                {
                  "key": "token",
                  "value": "{{token}}",
                  "type": "string"
                }
              ]
            },
            "url": {
              "raw": "{{baseUrl}}/companies/{{companyId}}/telegramBot/:id",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "companies",
                "{{companyId}}",
                "telegramBot",
                ":id"
              ],
              "variable": [
                {
                  "key": "id",
                  "value": "",
                  "description": "Identificador do telegram bot"
                }
              ],
              "query": []
            }
          }
        }
      ]
    },
    {
      "name": "Atalhos",
      "item": [
        {
          "name": "Visualizar todos os atalhos",
          "request": {
            "method": "GET",
            "description": "Obtém a lista de todos atalhos utilizados na plataforma Huggy.",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              },
              {
                "key": "Accept",
                "value": "application/json"
              }
            ],
            "auth": {
              "type": "bearer",
              "bearer": [
                {
                  "key": "token",
                  "value": "{{token}}",
                  "type": "string"
                }
              ]
            },
            "url": {
              "raw": "{{baseUrl}}/companies/{{companyId}}/shortcuts",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "companies",
                "{{companyId}}",
                "shortcuts"
              ],
              "variable": [],
              "query": []
            }
          }
        },
        {
          "name": "Visualizar um atalho",
          "request": {
            "method": "GET",
            "description": "Obtém os dados de um atalho.",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              },
              {
                "key": "Accept",
                "value": "application/json"
              }
            ],
            "auth": {
              "type": "bearer",
              "bearer": [
                {
                  "key": "token",
                  "value": "{{token}}",
                  "type": "string"
                }
              ]
            },
            "url": {
              "raw": "{{baseUrl}}/companies/{{companyId}}/shortcuts/:id",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "companies",
                "{{companyId}}",
                "shortcuts",
                ":id"
              ],
              "variable": [
                {
                  "key": "id",
                  "value": "",
                  "description": "Identificador do atalho"
                }
              ],
              "query": []
            }
          }
        },
        {
          "name": "Criar um novo atalho",
          "request": {
            "method": "POST",
            "description": "Cria um novo atalho para o envio de textos, imagens e arquivos.",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              },
              {
                "key": "Accept",
                "value": "application/json"
              }
            ],
            "auth": {
              "type": "bearer",
              "bearer": [
                {
                  "key": "token",
                  "value": "{{token}}",
                  "type": "string"
                }
              ]
            },
            "url": {
              "raw": "{{baseUrl}}/companies/{{companyId}}/shortcuts",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "companies",
                "{{companyId}}",
                "shortcuts"
              ],
              "variable": [],
              "query": []
            },
            "body": {
              "mode": "raw",
              "raw": "{\n  \"name\": \"<string>\",\n  \"key\": \"<string>\",\n  \"file\": \"<string>\",\n  \"text\": \"<string>\",\n  \"public\": \"<boolean>\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          }
        },
        {
          "name": "Atualizar um atalho",
          "request": {
            "method": "PUT",
            "description": "Atualiza um atalho por meio de seu ID.",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              },
              {
                "key": "Accept",
                "value": "application/json"
              }
            ],
            "auth": {
              "type": "bearer",
              "bearer": [
                {
                  "key": "token",
                  "value": "{{token}}",
                  "type": "string"
                }
              ]
            },
            "url": {
              "raw": "{{baseUrl}}/companies/{{companyId}}/shortcuts/:id",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "companies",
                "{{companyId}}",
                "shortcuts",
                ":id"
              ],
              "variable": [
                {
                  "key": "id",
                  "value": "",
                  "description": "Identificador do atalho"
                }
              ],
              "query": []
            },
            "body": {
              "mode": "raw",
              "raw": "{\n  \"name\": \"<string>\",\n  \"key\": \"<string>\",\n  \"file\": \"<string>\",\n  \"text\": \"<string>\",\n  \"public\": \"<boolean>\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          }
        },
        {
          "name": "Deletar um atalho",
          "request": {
            "method": "DELETE",
            "description": "Exclui um atalho a partir de seu ID.",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              },
              {
                "key": "Accept",
                "value": "application/json"
              }
            ],
            "auth": {
              "type": "bearer",
              "bearer": [
                {
                  "key": "token",
                  "value": "{{token}}",
                  "type": "string"
                }
              ]
            },
            "url": {
              "raw": "{{baseUrl}}/companies/{{companyId}}/shortcuts/:id",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "companies",
                "{{companyId}}",
                "shortcuts",
                ":id"
              ],
              "variable": [
                {
                  "key": "id",
                  "value": "",
                  "description": "Identificador do atalho"
                }
              ],
              "query": []
            }
          }
        }
      ]
    },
    {
      "name": "Status",
      "item": [
        {
          "name": "Visualizar todos os status",
          "request": {
            "method": "GET",
            "description": "Obtém a lista dos status criados pelos agentes (Disponível, Indisponível, etc).",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              },
              {
                "key": "Accept",
                "value": "application/json"
              }
            ],
            "auth": {
              "type": "bearer",
              "bearer": [
                {
                  "key": "token",
                  "value": "{{token}}",
                  "type": "string"
                }
              ]
            },
            "url": {
              "raw": "{{baseUrl}}/companies/{{companyId}}/status",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "companies",
                "{{companyId}}",
                "status"
              ],
              "variable": [],
              "query": []
            }
          }
        }
      ]
    },
    {
      "name": "Workflow",
      "item": [
        {
          "name": "Visualizar todos os workflows",
          "request": {
            "method": "GET",
            "description": "Obtém a lista de todos os workflows juntamente com suas respectivas etapas.",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              },
              {
                "key": "Accept",
                "value": "application/json"
              }
            ],
            "auth": {
              "type": "bearer",
              "bearer": [
                {
                  "key": "token",
                  "value": "{{token}}",
                  "type": "string"
                }
              ]
            },
            "url": {
              "raw": "{{baseUrl}}/companies/{{companyId}}/workflows",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "companies",
                "{{companyId}}",
                "workflows"
              ],
              "variable": [],
              "query": []
            }
          }
        },
        {
          "name": "Visualizar um workflow",
          "request": {
            "method": "GET",
            "description": "Obtém os dados de um workflow a partir de seu ID.",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              },
              {
                "key": "Accept",
                "value": "application/json"
              }
            ],
            "auth": {
              "type": "bearer",
              "bearer": [
                {
                  "key": "token",
                  "value": "{{token}}",
                  "type": "string"
                }
              ]
            },
            "url": {
              "raw": "{{baseUrl}}/companies/{{companyId}}/workflows/:id",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "companies",
                "{{companyId}}",
                "workflows",
                ":id"
              ],
              "variable": [
                {
                  "key": "id",
                  "value": "",
                  "description": "Identificador do workflow"
                }
              ],
              "query": []
            }
          }
        }
      ]
    },
    {
      "name": "Bots",
      "item": [
        {
          "name": "Visualizar todos os bots",
          "request": {
            "method": "GET",
            "description": "Obtém a lista de todos os bots criados na plataforma Huggy.",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              },
              {
                "key": "Accept",
                "value": "application/json"
              }
            ],
            "auth": {
              "type": "bearer",
              "bearer": [
                {
                  "key": "token",
                  "value": "{{token}}",
                  "type": "string"
                }
              ]
            },
            "url": {
              "raw": "{{baseUrl}}/companies/{{companyId}}/bots",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "companies",
                "{{companyId}}",
                "bots"
              ],
              "variable": [],
              "query": []
            }
          }
        },
        {
          "name": "Visualizar um bot",
          "request": {
            "method": "GET",
            "description": "Obtém os dados detalhados de um bot a partir de seu ID.",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              },
              {
                "key": "Accept",
                "value": "application/json"
              }
            ],
            "auth": {
              "type": "bearer",
              "bearer": [
                {
                  "key": "token",
                  "value": "{{token}}",
                  "type": "string"
                }
              ]
            },
            "url": {
              "raw": "{{baseUrl}}/companies/{{companyId}}/bots/:id",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "companies",
                "{{companyId}}",
                "bots",
                ":id"
              ],
              "variable": [
                {
                  "key": "id",
                  "value": "",
                  "description": "Identificador do bot"
                }
              ],
              "query": []
            }
          }
        }
      ]
    },
    {
      "name": "Agentes Virtuais",
      "item": [
        {
          "name": "Visualizar todos os agentes virtuais",
          "request": {
            "method": "GET",
            "description": "Obtém a lista de todos os agentes virtuais cadastrados.",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              },
              {
                "key": "Accept",
                "value": "application/json"
              }
            ],
            "auth": {
              "type": "bearer",
              "bearer": [
                {
                  "key": "token",
                  "value": "{{token}}",
                  "type": "string"
                }
              ]
            },
            "url": {
              "raw": "{{baseUrl}}/companies/{{companyId}}/virtualAgents",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "companies",
                "{{companyId}}",
                "virtualAgents"
              ],
              "variable": [],
              "query": []
            }
          }
        },
        {
          "name": "Visualizar um agente virtual",
          "request": {
            "method": "GET",
            "description": "Obtém os dados de um agente virtual a partir do seu ID.",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              },
              {
                "key": "Accept",
                "value": "application/json"
              }
            ],
            "auth": {
              "type": "bearer",
              "bearer": [
                {
                  "key": "token",
                  "value": "{{token}}",
                  "type": "string"
                }
              ]
            },
            "url": {
              "raw": "{{baseUrl}}/companies/{{companyId}}/virtualAgents/:id",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "companies",
                "{{companyId}}",
                "virtualAgents",
                ":id"
              ],
              "variable": [
                {
                  "key": "id",
                  "value": "",
                  "description": "Identificador do agente virtual"
                }
              ],
              "query": []
            }
          }
        }
      ]
    },
    {
      "name": "Projetos",
      "item": [
        {
          "name": "Visualizar todos os projetos",
          "request": {
            "method": "GET",
            "description": "Obtém a lista de todos os projetos criados na plataforma Huggy.",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              },
              {
                "key": "Accept",
                "value": "application/json"
              }
            ],
            "auth": {
              "type": "bearer",
              "bearer": [
                {
                  "key": "token",
                  "value": "{{token}}",
                  "type": "string"
                }
              ]
            },
            "url": {
              "raw": "{{baseUrl}}/companies/{{companyId}}/projects",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "companies",
                "{{companyId}}",
                "projects"
              ],
              "variable": [],
              "query": []
            }
          }
        },
        {
          "name": "Visualizar um projeto",
          "request": {
            "method": "GET",
            "description": "Obtém os dados de um projeto a partir de seu ID.",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              },
              {
                "key": "Accept",
                "value": "application/json"
              }
            ],
            "auth": {
              "type": "bearer",
              "bearer": [
                {
                  "key": "token",
                  "value": "{{token}}",
                  "type": "string"
                }
              ]
            },
            "url": {
              "raw": "{{baseUrl}}/companies/{{companyId}}/projects/:id",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "companies",
                "{{companyId}}",
                "projects",
                ":id"
              ],
              "variable": [
                {
                  "key": "id",
                  "value": "",
                  "description": "Identificador do projeto"
                }
              ],
              "query": []
            }
          }
        },
        {
          "name": "Criar um projeto",
          "request": {
            "method": "POST",
            "description": "Cria um projeto passando no corpo da requisição o nome desejado.",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              },
              {
                "key": "Accept",
                "value": "application/json"
              }
            ],
            "auth": {
              "type": "bearer",
              "bearer": [
                {
                  "key": "token",
                  "value": "{{token}}",
                  "type": "string"
                }
              ]
            },
            "url": {
              "raw": "{{baseUrl}}/companies/{{companyId}}/projects",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "companies",
                "{{companyId}}",
                "projects"
              ],
              "variable": [],
              "query": []
            },
            "body": {
              "mode": "raw",
              "raw": "{\n  \"name\": \"<string>\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          }
        },
        {
          "name": "Atualizar o nome do projeto",
          "request": {
            "method": "PUT",
            "description": "Atualiza o nome do projeto.",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              },
              {
                "key": "Accept",
                "value": "application/json"
              }
            ],
            "auth": {
              "type": "bearer",
              "bearer": [
                {
                  "key": "token",
                  "value": "{{token}}",
                  "type": "string"
                }
              ]
            },
            "url": {
              "raw": "{{baseUrl}}/companies/{{companyId}}/projects/:id",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "companies",
                "{{companyId}}",
                "projects",
                ":id"
              ],
              "variable": [
                {
                  "key": "id",
                  "value": "",
                  "description": "Identificador do projeto"
                }
              ],
              "query": []
            },
            "body": {
              "mode": "raw",
              "raw": "{\n  \"name\": \"<string>\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          }
        },
        {
          "name": "Excluir um projeto",
          "request": {
            "method": "DELETE",
            "description": "Exclui um projeto a partir do seu ID.",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              },
              {
                "key": "Accept",
                "value": "application/json"
              }
            ],
            "auth": {
              "type": "bearer",
              "bearer": [
                {
                  "key": "token",
                  "value": "{{token}}",
                  "type": "string"
                }
              ]
            },
            "url": {
              "raw": "{{baseUrl}}/companies/{{companyId}}/projects/:id",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "companies",
                "{{companyId}}",
                "projects",
                ":id"
              ],
              "variable": [
                {
                  "key": "id",
                  "value": "",
                  "description": "Identificador do projeto"
                }
              ],
              "query": []
            }
          }
        }
      ]
    },
    {
      "name": "Projetos (Flows)",
      "item": [
        {
          "name": "Visualizar todos os flows de um projeto",
          "request": {
            "method": "GET",
            "description": "Obtém a lista de todos os flows de um projeto.",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              },
              {
                "key": "Accept",
                "value": "application/json"
              }
            ],
            "auth": {
              "type": "bearer",
              "bearer": [
                {
                  "key": "token",
                  "value": "{{token}}",
                  "type": "string"
                }
              ]
            },
            "url": {
              "raw": "{{baseUrl}}/companies/{{companyId}}/projects/:id/flows",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "companies",
                "{{companyId}}",
                "projects",
                ":id",
                "flows"
              ],
              "variable": [
                {
                  "key": "id",
                  "value": "",
                  "description": "Identificador do projeto"
                }
              ],
              "query": []
            }
          }
        },
        {
          "name": "Visualizar um Flow",
          "request": {
            "method": "GET",
            "description": "Obtém os dados de um Flow automatizado a partir do ID.",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              },
              {
                "key": "Accept",
                "value": "application/json"
              }
            ],
            "auth": {
              "type": "bearer",
              "bearer": [
                {
                  "key": "token",
                  "value": "{{token}}",
                  "type": "string"
                }
              ]
            },
            "url": {
              "raw": "{{baseUrl}}/companies/{{companyId}}/projects/:projectId/flows/:flowId",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "companies",
                "{{companyId}}",
                "projects",
                ":projectId",
                "flows",
                ":flowId"
              ],
              "variable": [
                {
                  "key": "projectId",
                  "value": "",
                  "description": "Identificador do projeto"
                },
                {
                  "key": "flowId",
                  "value": "",
                  "description": "Identificador do Flow"
                }
              ],
              "query": []
            }
          }
        },
        {
          "name": "Criar um Flow",
          "request": {
            "method": "POST",
            "description": "Cria um novo Flow dentro de um projeto específico.",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              },
              {
                "key": "Accept",
                "value": "application/json"
              }
            ],
            "auth": {
              "type": "bearer",
              "bearer": [
                {
                  "key": "token",
                  "value": "{{token}}",
                  "type": "string"
                }
              ]
            },
            "url": {
              "raw": "{{baseUrl}}/companies/{{companyId}}/projects/:id/flows",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "companies",
                "{{companyId}}",
                "projects",
                ":id",
                "flows"
              ],
              "variable": [
                {
                  "key": "id",
                  "value": "",
                  "description": "Identificador do projeto"
                }
              ],
              "query": []
            },
            "body": {
              "mode": "raw",
              "raw": "{\n  \"description\": \"<string>\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          }
        },
        {
          "name": "Atualizar um Flow",
          "request": {
            "method": "PUT",
            "description": "Atualiza a descrição de um Flow.",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              },
              {
                "key": "Accept",
                "value": "application/json"
              }
            ],
            "auth": {
              "type": "bearer",
              "bearer": [
                {
                  "key": "token",
                  "value": "{{token}}",
                  "type": "string"
                }
              ]
            },
            "url": {
              "raw": "{{baseUrl}}/companies/{{companyId}}/projects/:projectId/flows/:flowId",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "companies",
                "{{companyId}}",
                "projects",
                ":projectId",
                "flows",
                ":flowId"
              ],
              "variable": [
                {
                  "key": "projectId",
                  "value": "",
                  "description": "Identificador do projeto"
                },
                {
                  "key": "flowId",
                  "value": "",
                  "description": "Identificador do Flow"
                }
              ],
              "query": []
            },
            "body": {
              "mode": "raw",
              "raw": "{\n  \"description\": \"<string>\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          }
        },
        {
          "name": "Excluir um Flow",
          "request": {
            "method": "DELETE",
            "description": "Exclui um Flow a partir do seu ID.",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              },
              {
                "key": "Accept",
                "value": "application/json"
              }
            ],
            "auth": {
              "type": "bearer",
              "bearer": [
                {
                  "key": "token",
                  "value": "{{token}}",
                  "type": "string"
                }
              ]
            },
            "url": {
              "raw": "{{baseUrl}}/companies/{{companyId}}/projects/:projectId/flows/:flowId",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "companies",
                "{{companyId}}",
                "projects",
                ":projectId",
                "flows",
                ":flowId"
              ],
              "variable": [
                {
                  "key": "projectId",
                  "value": "",
                  "description": "Identificador do projeto"
                },
                {
                  "key": "flowId",
                  "value": "",
                  "description": "Identificador do Flow"
                }
              ],
              "query": []
            }
          }
        }
      ]
    },
    {
      "name": "Organizações",
      "item": [
        {
          "name": "Visualizar todas as organizações",
          "request": {
            "method": "GET",
            "description": "Obtém a lista de todas as organizações cadastradas na plataforma Huggy.",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              },
              {
                "key": "Accept",
                "value": "application/json"
              }
            ],
            "auth": {
              "type": "bearer",
              "bearer": [
                {
                  "key": "token",
                  "value": "{{token}}",
                  "type": "string"
                }
              ]
            },
            "url": {
              "raw": "{{baseUrl}}/companies/{{companyId}}/organizations",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "companies",
                "{{companyId}}",
                "organizations"
              ],
              "variable": [],
              "query": []
            }
          }
        },
        {
          "name": "Criar uma nova organização",
          "request": {
            "method": "POST",
            "description": "Cria uma nova organização na plataforma Huggy.",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              },
              {
                "key": "Accept",
                "value": "application/json"
              }
            ],
            "auth": {
              "type": "bearer",
              "bearer": [
                {
                  "key": "token",
                  "value": "{{token}}",
                  "type": "string"
                }
              ]
            },
            "url": {
              "raw": "{{baseUrl}}/companies/{{companyId}}/organizations",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "companies",
                "{{companyId}}",
                "organizations"
              ],
              "variable": [],
              "query": []
            },
            "body": {
              "mode": "raw",
              "raw": "{\n  \"name\": \"<string>\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          }
        },
        {
          "name": "Atualizar uma organização",
          "request": {
            "method": "PUT",
            "description": "Atualiza o nome da organização.",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              },
              {
                "key": "Accept",
                "value": "application/json"
              }
            ],
            "auth": {
              "type": "bearer",
              "bearer": [
                {
                  "key": "token",
                  "value": "{{token}}",
                  "type": "string"
                }
              ]
            },
            "url": {
              "raw": "{{baseUrl}}/companies/{{companyId}}/organizations/:Id",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "companies",
                "{{companyId}}",
                "organizations",
                ":Id"
              ],
              "variable": [
                {
                  "key": "Id",
                  "value": "",
                  "description": "Identificador da organização"
                }
              ],
              "query": []
            },
            "body": {
              "mode": "raw",
              "raw": "{\n  \"name\": \"<string>\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          }
        },
        {
          "name": "Excluir uma organização",
          "request": {
            "method": "DELETE",
            "description": "Exclui uma organização a partir de seu ID.",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              },
              {
                "key": "Accept",
                "value": "application/json"
              }
            ],
            "auth": {
              "type": "bearer",
              "bearer": [
                {
                  "key": "token",
                  "value": "{{token}}",
                  "type": "string"
                }
              ]
            },
            "url": {
              "raw": "{{baseUrl}}/companies/{{companyId}}/organizations/:Id",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "companies",
                "{{companyId}}",
                "organizations",
                ":Id"
              ],
              "variable": [
                {
                  "key": "Id",
                  "value": "",
                  "description": "Identificador da organização"
                }
              ],
              "query": []
            }
          }
        }
      ]
    },
    {
      "name": "Companies",
      "item": [
        {
          "name": "Visualizar todas as companies",
          "request": {
            "method": "GET",
            "description": "Obtém a lista de todas as companies de um agente.",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              },
              {
                "key": "Accept",
                "value": "application/json"
              }
            ],
            "auth": {
              "type": "bearer",
              "bearer": [
                {
                  "key": "token",
                  "value": "{{token}}",
                  "type": "string"
                }
              ]
            },
            "url": {
              "raw": "{{baseUrl}}/companies/{{companyId}}/companies",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "companies",
                "{{companyId}}",
                "companies"
              ],
              "variable": [],
              "query": []
            }
          }
        }
      ]
    }
  ],
  "variable": [
    {
      "key": "baseUrl",
      "value": "https://api.huggy.app/v3",
      "type": "string"
    },
    {
      "key": "companyId",
      "value": "SEU_COMPANY_ID",
      "type": "string"
    },
    {
      "key": "token",
      "value": "SEU_TOKEN_AQUI",
      "type": "string"
    }
  ]
}