Documentation Index
Fetch the complete documentation index at: https://orbit-docs.devotel.io/llms.txt
Use this file to discover all available pages before exploring further.
Quick-action deep links
Every per-channel messaging page in the Orbit dashboard supports a?dialog=compose URL parameter that opens the compose dialog automatically on mount. Combine it with channel-specific query params (recipient, template, conversation context) to build deep links from internal tooling, contact lists, or browser bookmarks.
This is the same pattern used by the dashboard’s own Quick Actions menu and the contact list’s “Send message” button.
Supported pages
| Channel | URL |
|---|---|
| SMS | /messages/sms?dialog=compose |
/messages/whatsapp?dialog=compose | |
/messages/email?dialog=compose | |
| RCS | /messages/rcs?dialog=compose |
| Viber | /messages/viber?dialog=compose |
| Push | /messages/push?dialog=compose |
| Fax | /messages/fax?dialog=compose |
Pre-fill the recipient
Append?to=<E.164 or address> along with dialog=compose:
+ as %2B. Email addresses pre-fill as-is — ?to=alex%40example.com&dialog=compose.
Pre-fill a template
For SMS / WhatsApp / RCS, appendtemplate=<template_name>:
Thread into an existing conversation
For inbox-aware channels (WhatsApp, RCS, Viber, Email), includeconversation=<conversation_id>:
Common combinations
Locale prefix
Every URL is locale-prefixed:/${locale}/messages/.... When building from JS / TS, read the locale from the dashboard’s useLocale() hook (or the URL path on a server-rendered page); when building from external systems, default to the operator’s preferred language or en.
Cross-channel dispatch from Quick Actions
The dashboard’s Quick Actions component normalises a “Send message” intent into the right channel automatically. If you build a custom Quick Action via the Orbit SDK, prefer the same logic over hard-coding/messages/sms:
What the dialog will NOT do
- Auto-send — the dialog always opens in compose mode and waits for explicit operator confirmation. There is no
&auto_send=true. - Pre-fill body content —
?body=is intentionally unsupported; we don’t want a malicious link from outside the org to draft messages on behalf of the operator. Use templates for repeatable content. - Bypass role guards — the operator’s role still controls whether the compose dialog renders at all. A viewer-tier role lands on the channel page but the compose dialog refuses to mount.
See also
- Channels overview — per-channel sending semantics.
- WhatsApp Business Calling — the call-permission template that the WhatsApp permission-indicator CTA opens via this same deep link.