Sending messages
Once your users are subscribed to a channel or two, you can send messages to them!
BF Action
Authenticated Channels
Example
// This will send a showAlert action
// to channels "channel1", "channel2" and "channel3"
[
{
"action": "messageSend",
"options": {
"actions": [
{
"action": "showAlert",
"options": {
"text": "Hello from Message",
"title": "Hello World",
"type": "information"
}
}
],
"model": {
"myModelData": "modelData"
},
"app": {
"myAppData": "appModelData"
},
"channels": ["channel1", "channel2", "channel3"]
}
}
]Full action reference:
messageSendAnonymous channel
Example
Full action reference:
messageSendAnonChannelFileMaker Script
Example Parameter
API endpoint /message/sendmessage
API: Send Message
Headers
Name
Type
Description
Request Body
Name
Type
Description
Example request body
Last updated
Was this helpful?