messageSend
Function Action Object
Key
value
Description
Examples
// 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"]
}
}
]Last updated
Was this helpful?