I'm struggling to add clickable links in Dialogflow's custom payload response. Seeking community help for insights or solutions. Any guidance on this matter would be highly appreciated. Thanks!
Solved! Go to Solution.
Can you try this in your custom payload?
{
"richContent": [
[
{
"type": "info",
"title": "Info item title",
"subtitle": "Info item subtitle",
"image": {
"src": {
"rawUrl": "https://example.com/images/logo.png"
}
},
"actionLink": "https://example.com"
}
]
]
}