@twilio/autopilot-templates
Version:
Autopilot templates
50 lines (49 loc) • 1 kB
JSON
{
"actions": [
{
"collect": {
"name": "travel_questions",
"questions": [
{
"question": "Which city do you want to leave from: New York or San Francisco?",
"name": "trip_start",
"type": "Twilio.CITY",
"validate": {
"allowed_values": {
"list": [
"New York",
"NYC",
"JFK",
"San Francisco",
"SF",
"SFO"
]
},
"on_failure": {
"messages": [
{
"say": "That isn't a city I recognize."
},
{
"say": "I didn't get that. SF and New York are the options."
}
],
"repeat_question": true
},
"on_success": {
"say": "Got it. I'll get started on an itinerary."
},
"max_attempts": {
"redirect": "task://having-trouble",
"num_attempts": 3
}
}
}
],
"on_complete": {
"redirect": "https://myapp.com/collect"
}
}
}
]
}