Skippable
This can be used with all the input cards. It shows a skip button along with the input widgets, with which the visitor can choose to skip responding to a particular question.
Channel compatibility
Sample Code:
Copiedresponse = map();
response.put("action", "context");
response.put("context_id", "test");
response.put("questions", [
{
"name": "choice",
"replies": [
"Please choose a number from the following option"
],
"input": {
"type": "select",
"options": [
"I'm new here, just browsing",
"I'm an existing customer and need help"
"I want a product demo"
]
},
"skippable": "true"
}
]);