Developer Portal
Portal único para docs, playgrounds, examples, troubleshooting e self-service técnico.
Portal
Hub principal para docs, playgrounds e downloads.
Getting Started
Jornada completa para integrar o Chatbeep em menos de 10 minutos.
Widget Playground
Configurator com preview ao vivo, snippet e gerador por stack.
API Playground
Operações maduras da API v1 com code samples e Try It.
SDK Playground
Pacotes oficiais, quick starts e smoke workflow por stack.
ChatFlows Playground
Simulador público de fluxos com variáveis, contexto e transições.
Examples
Biblioteca de exemplos para suporte, lead capture, FAQ e integrações.
Troubleshooting
Checks operacionais para widget, auth, billing, push e fiscal.
Installation Wizard
Angular
Inserir o loader no AppComponent ou num serviço singleton de bootstrap.
Instalação
Configuração
Troubleshooting
Snippet
Base pronta para Angular
// app.component.ts
ngOnInit(): void {
const script = document.createElement('script');
script.src = 'https://cdn.chatbeep.app/widget/chatbeep.js';
script.async = true;
script.dataset.apiBase = 'https://chatbeep.app';
script.dataset.installationToken = 'SEU_TOKEN_DA_INSTALACAO';
document.body.appendChild(script);
}