-
Notifications
You must be signed in to change notification settings - Fork 0
Demo Part 2 Step 1 Internal Outbound
Andrey Egorov edited this page May 18, 2026
·
2 revisions
Import: part-2-step-1-internal-outbound.json
Complete the smallest extension-originated outbound scenario:
- a registered extension starts a call
- numbers beginning with
9go to the external trunk - other numbers stay inside the PBX
- the answered destination is bridged back to the original extension leg
-
internalis both the registrar and the extension-originated call entrypoint. The same trigger accepts registration and later receives outbound calls from those endpoints. -
outgoing_typekeeps the routing split explicit: external trunk destinations on one branch, internal extension destinations on the other. -
dial_externaluses theexternaltrunk ref, whiledial_internaltargets already registered PBX extensions. -
bridge_outgoingruns only after the outbound side has produced a usable leg, so the originating extension is bridged only to a real destination.
- Import the workflow.
- Activate it.
- Register one of the
internalextensions. - Place a call from that extension.
- Dial a number that starts with
9, or a plain extension number.
| Dialed number | Result |
|---|---|
starts with 9
|
workflow uses dial_external and bridges back to the original extension leg |
does not start with 9
|
workflow uses dial_internal and bridges back to the original extension leg |
Part 2 / Step 2 combines this outbound line with the inbound extension front door.