When sending a response to a Twilio Autopilot bot, I want to split the message in several "blocks", like in the sample image below:
I tried adding two Say
actions, but it didn't work: I got an Invalid Autopilot Actions JSON: Invalid Autopilot Action
`
{
"actions": [
{"say": "Hello, World!},
{"say": "Hello, World!},
{"listen":true}
]
}
Or in the other hand, if that's not possible, how can I add new lines to the message, so that the message is in paragraphs.
I tried sending this message but I also got an Invalid Autopilot Actions JSON: Invalid Autopilot Action
{
"actions": [
{"say": "Hello, World!
More text!"},
{"listen":true}
]
}
Any help will be appreciated.
I accepted the answer as it technically answers my question. Although not in the way I wanted.
I still wonder if it's possible to add new lines "\n" on the Say actions.