@@ -152,13 +152,26 @@ exports.handler = function (context, event, callback) {
152
152
};
153
153
```
154
154
155
+ #### TwiML Bin: Get the next caller in the queue
156
+
157
+ If you had a phone number you could set a dial in number to use the following TwiML Bin on incoming calls. You'd then just have the manager call this number and they'd get the next caller in the queue!
158
+
159
+ ``` xml
160
+ <Response >
161
+ <Dial >
162
+ <Queue >managers</Queue >
163
+ </Dial >
164
+ </Response >
165
+ ```
166
+
155
167
### Video 4 - Create an Outbound Call
156
168
157
169
- 📚 [ Twilio CLI] ( https://twil.io/cli )
158
170
- 👩💻 [ Twilio CLI Debugger Plugin] ( https://github.com/twilio/plugin-debugger )
159
171
- 📚 [ Call Resource Status Callback] ( https://www.twilio.com/docs/voice/api/call-resource#statuscallback )
160
172
- 📚 [ Messaging Status Callback pattern] ( https://www.twilio.com/docs/usage/webhooks/sms-webhooks#type-2-status-callbacks )
161
173
- 📚 [ Answering Machine Detection] ( https://www.twilio.com/docs/voice/answering-machine-detection )
174
+ - 👩💻 [ Modify Calls in Progress - Tutorial] ( https://www.twilio.com/docs/voice/tutorials/how-to-modify-calls-in-progress )
162
175
163
176
#### Function: /status-displayer
164
177
@@ -195,6 +208,7 @@ You can view [all the completed PhoneMO source code](./code/phonemo).
195
208
196
209
### Video 1 - Project Introduction
197
210
211
+ - 🎁 Looking for a promo code to upgrade your account out of trial mode? Send me a text message with the word ` promo ` in it.
198
212
- 👀 [ Most Popular Social Audio Apps in 2021] ( https://www.highfidelity.com/blog/most-popular-social-audio-apps )
199
213
200
214
### Video 2 - Use the Serverless Toolkit
@@ -208,11 +222,19 @@ You can view [all the completed PhoneMO source code](./code/phonemo).
208
222
209
223
### Video 4 - Use Private Data
210
224
225
+ ⏰⏰⏰⏰⏰⏰
226
+
227
+ Whoops! I mistakenly put ` muted: false ` but I meant ` muted: true ` ! We want callers that aren't the speakers to be silent. Sorry about that!
228
+
229
+ ⏰⏰⏰⏰⏰⏰
230
+
211
231
- 📚 [ Using Private Assets] ( https://www.twilio.com/docs/runtime/assets#using-private-assets )
212
232
- 👀 [ String.prototype.split - MDN] ( https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/split )
213
233
214
234
### Video 5 - Allow for registration via SMS
215
235
236
+ - 👀 [ switch statement - MDN] ( https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Statements/switch )
237
+
216
238
#### Code for showing the schedule
217
239
218
240
``` javascript
@@ -238,6 +260,7 @@ if (showHelp) {
238
260
### Video 8 - Send a follow-up survey
239
261
240
262
- 👀 [ SMS Guidelines] ( https://www.twilio.com/guidelines/sms )
263
+ - 👀 [ What is Net Promoter Score or NPS] ( https://www.netpromoter.com/know/ )
241
264
242
265
### Video 9 - Wrap-up
243
266
0 commit comments