Documentation Index
Fetch the complete documentation index at: https://docs.whatsable.app/llms.txt
Use this file to discover all available pages before exploring further.
Required environment variables
| Variable | Required | Default | Used for |
|---|---|---|---|
NOTIFYER_API_BASE_URL | yes | — | Base API host (must be HTTPS), e.g. https://api.insightssystem.com |
NOTIFYER_API_TOKEN | yes (most scripts) | — | JWT returned by setup-notifyer/scripts/login.js |
NOTIFYER_CHAT_ORIGIN | no | https://chat.notifyer-systems.com | Origin header for chat endpoints when overridden |
Auth modes (critical)
Notifyer has three auth modes depending on the API surface. The same JWT is used for Console and Chat modes — only the header formatting differs.| Mode | Header | Where it’s used |
|---|---|---|
| Console | Authorization: Bearer <jwt> | setup-notifyer and automate-notifyer (most endpoints) |
| Chat | Authorization: <jwt> (raw) | chat-notifyer and some web endpoints (labels/recipients/chat) |
| Developer | Authorization: <api_key> (raw) | Make/Zapier/n8n modules + direct developer send APIs |
Origin headers & CORS behavior
Many Xano endpoints enforce allowed origins. The skills’ shared HTTP client automatically sends a correctOrigin header per mode:
- Console-mode requests use
Origin: https://console.notifyer-systems.com - Chat-mode requests use
Origin: https://chat.notifyer-systems.com(override withNOTIFYER_CHAT_ORIGIN)
Persisting environment variables
Add these exports to your shell profile:Security notes for CLI usage
Related pages
setup-notifyer(login, doctor, API key)chat-notifyer(chat origin and 24h window policy)- Security