SalesIQ/Zobot - Cards in action/replies of operator_busy, pending, etc?
==> For actions like operator_busy, block, pending, and end do the replies HAVE to be only a List containing text messages, or can they contain other cards, like, articles, videos, etc ?
For example, is the following a valid action?
- {
- "action": "pending",
- "replies": [
- "Sorry to keep you waiting, but generating the detailed report is taking longer than expected".,
- "In the meantime, here's a quick dashboard that the system auto-generated at midnight last night.",
- {
- "type": "links",
- "text": "Dashboard as of 11 Jan 2020, EOD",
- "links": [
- {
- "url": "https://somedomain.com/somepath",
- "text": "Dashboard as of 11 Jan 2020, EOD",
- "icon": "https://somedomain.com/icon"
- }
- ]
- }
- ]
- }