problem:
i've setup some incoming webhook integrations for nagios to post to an #alert channel. the alerts are posted to the channel, but the attachement is not shown in desktop notification and push message on iphone.
this will show correct information in push notification on iphone and in desktop notifications, submitted via post to the server with the following vars
data = {"text": message, "channel": channel, "username": bot_name, "icon_emoji": emoji}
in windows app
browser notification
ios notification
the following data will not show up in desktop notifications and push messages. submitted via post with some more vars
attachment = { "fallback": plaintext, "color": colour, "text": message, "mrkdwn_in": ["text"]}
`
it will not show if attachement is set. is there a way to show up the notifications when attachement is set in incoming webhook integrations that are posted to the server?
Rocket.Chat Version: 0.52.0 Running Instances: 1 DB Replicaset OpLog: Node Version: 4.5.0 - x64
problem: i've setup some incoming webhook integrations for nagios to post to an #alert channel. the alerts are posted to the channel, but the attachement is not shown in desktop notification and push message on iphone.
this will show correct information in push notification on iphone and in desktop notifications, submitted via post to the server with the following vars
data = {"text": message, "channel": channel, "username": bot_name, "icon_emoji": emoji}
in windows app
browser notification
ios notification
the following data will not show up in desktop notifications and push messages. submitted via post with some more vars
attachment = { "fallback": plaintext, "color": colour, "text": message, "mrkdwn_in": ["text"]}
`data = {"text": message, "channel": channel, "username": bot_name, "attachments": [attachment], "icon_emoji": emoji}
`
in windows app
browser notification
ios notification
it will not show if attachement is set. is there a way to show up the notifications when attachement is set in incoming webhook integrations that are posted to the server?