Messages format
Enhance your communication with Flexito's versatile messaging capabilities. Whether you're sending text, images, videos, audio, or files, Flexito makes it easy to integrate buttons, actions, and quick replies. Discover how to effectively use these features to engage your audience
Listen to an audio overview
A short, AI-generated podcast-style summary of this article.
Enhance your communication with Flexito's versatile messaging capabilities. Whether you're sending text, images, videos, audio, or files, Flexito makes it easy to integrate buttons, actions, and quick replies. Discover how to effectively use these features to engage your audience and streamline your messaging strategy.
Text Messaging
Utilise this feature to send text messages. You can incorporate URL, node, and call buttons with your text messages. The properties "buttons", "actions", and "quick_replies" are optional.
{ "version": "v1", "content": { "messages": [ { "type": "text", "text": "simple text with button", "buttons": [ { "type": "url", "caption": "External link", "url": "" } ] } ], "actions": [], "quick_replies": [] } }
Image Messaging
This feature allows you to send image files. Messenger supports formats like JPG, PNG, and GIF. You can add URL, call, and node buttons. The properties "buttons", "actions", and "quick_replies" are optional.
{ "version": "v1", "content": { "messages": [ { "type": "image", "url": "", "buttons": [] } ], "actions": [], "quick_replies": [] } }
Video File Messaging
Use this feature to send video files. Messenger supports video files up to 25MB. You can include URL, call, and node buttons. The properties "buttons", "actions", and "quick_replies" are optional.
{ "version": "v1", "content": { "messages": [ { "type": "video", "url": "", "buttons": [] } ], "actions": [], "quick_replies": [] } }
Audio File Messaging
Send audio files with this feature. Messenger supports audio files up to 25MB. URL, call, and node buttons can be added. The properties "buttons", "actions", and "quick_replies" are optional.
{ "version": "v1", "content": { "messages": [ { "type": "audio", "url": "", "buttons": [] } ], "actions": [], "quick_replies": [] } }
File Messaging
This feature enables you to send various file types, with a size limit of 25MB. The properties "actions" and "quick_replies" are optional.
{ "version": "v1", "content": { "messages": [ { "type": "file", "url": "" } ], "actions": [], "quick_replies": [] } }
Gallery Cards Messaging
Send a horizontally scrollable gallery with this feature. You can include URL, call, and node buttons. The properties "action_url", "buttons", "actions", and "quick_replies" are optional.
{ "version": "v1", "content": { "messages": [ { "type": "cards", "elements": [ { "title": "Card title", "subtitle": "card text", "image_url": "", "action_url": "", "buttons": [] } ], "image_aspect_ratio": "horizontal" } ], "actions": [], "quick_replies": [] } } Note: URLs starting with HTTP may not open in some browsers. It's recommended to use the HTTPS protocol.\ Image Aspect Ratio: Determines how cards are displayed. Options include horizontal or square (default is horizontal).

