Use this activity to send a native notification directly to devices of a specific platform: Android (Firebase) or iOs.
The connection string of the hub you want to send the message.
The name of the hub you want to send the message.
The JSON object which represents the notification.
{ "notification": { "title": "Notification title", "body": "Notification text"}, "data": { "property1": "value1", "property2":42 } } }For iOS devices it is:
{ "aps": { "alert":"Notification text" } }
The platform for which the message is.
An object representing the notification just sent.
Tag expressions enable you to target specific sets of devices, or more specifically registrations, when sending a push notification through Notification Hubs.
The DeviceId is used to send a notification to a specific device. This is can be taken from the registration of the app that recives the message.