We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 45c294e commit 0d44c62Copy full SHA for 0d44c62
README.md
@@ -238,6 +238,18 @@ await inbundCallSession.toVoicemail();
238
await inbundCallSession.forward(targetNumber);
239
```
240
241
+##### Forward to extension number
242
+
243
+You will need to detect if end user specified an extension number instead of a
244
+phone number and prefix it with the main company numbers.
245
246
+For example, if user wants to forward to extension "102", and you know that the
247
+main company number is "12345678987", you can:
248
249
+```ts
250
+await inbundCallSession.forward("12345678987*102");
251
+```
252
253
##### Troubleshooting Call Forwarding Issues
254
255
If you run into trouble forwarding calls to a specific number/extension,
0 commit comments