Message response types
This page documents all response types supported in "message:brain_received" events. Each response
includes an action_id, used internally by Moveo to track UI interactions and analytics.
⌨️ Text
{
"type": "text",
"text": string,
"action_id": string,
"options": [
{
"label": string,
"text": string
}
]
}
🖼️ Image
{
"type": "image",
"url": string,
"name": string,
"action_id": string
}
🎥 Video
{
"type": "video",
"url": string,
"name": string,
"size": number,
"action_id": string
}
📁 File
{
"type": "file",
"url": string,
"name": string,
"size": number,
"action_id": string
}
🔗 URL
{
"type": "url",
"url": string,
"action_id": string
}