July 2018
Intermediate to advanced
404 pages
9h 5m
English
A listSelect response allows you to respond to the user by displaying a list of items that the user can click. The clicked item will send to the Dialogflow. In this section, you will use this to list authors so that the user can choose an author, which will trigger an intent.
The following code shows how to build a listSelect response:
"listSelect": { "title": "Select an Author", "items": [ { "info": { "key": "Eliot" }, "title": "T. S. Eliot"}, { "info": { "key": "White" }, "title": "J. B. White"}, ]}
Read now
Unlock full access