name | Application name. | string | |
appPlatform | Application platform. | string | Enum: [android, ios] |
appId | Application ID generated on firebase/apn project. | string | |
enableNotification | | boolean | default: true |
accountConfig | | | |
ㅤ↳android | | | maxProperties: 1 |
ㅤㅤㅤ↳projectId * | SDS key for the globally unique, user-assigned ID of the parent project for the app. | string | |
ㅤㅤㅤ↳clientEmail * | SDS key for firebase service account. | string | |
ㅤㅤㅤ↳privateKey * | SDS key for private key for firebase service account. | string | |
androidConfig | Configuration for Android notification message. | | |
ㅤ↳collapseKey | Collapse key for the message. Collapse key serves as an identifier for a group of messages that can be collapsed, so that only the last message
gets sent when delivery can be resumed. | string | |
ㅤ↳priority | FCM concept that controls when the message is delivered. | string | Enum: [high, normal] |
ㅤ↳ttl | Time-to-live duration of the message in milliseconds. | number | |
ㅤ↳restrictedPackageName | Package name of the application where the registration tokens must match in order to receive the message. | string | |
ㅤ↳icon | Icon resource for the Android notification. | string | |
ㅤ↳color | Notification icon color in #rrggbb format. | string | pattern: ^#([a-fA-F0-9]{6})$ |
ㅤ↳sound | File name of the sound to be played when the device receives the notification. | string | |
ㅤ↳tag | Notification tag. This is an identifier used to replace existing notifications in the notification drawer.
If not specified, each request creates a new notification. | string | |
ㅤ↳clickAction | Action associated with a user clicking on the notification.
If specified, an activity with a matching Intent Filter is launched when a user clicks on the notification. | string | |
ㅤ↳bodyLocKey | Key of the body string in the app's string resource to use to localize the body text. | string | |
ㅤ↳bodyLocArgs | An array of resource keys that will be used in place of the format specifiers in bodyLocKey. | string | |
ㅤ↳titleLocKey | Key of the title string in the app's string resource to use to localize the title text. | string | |
ㅤ↳titleLocArgs | An array of resource keys that will be used in place of the format specifiers in titleLocKey. | string | |
ㅤ↳channelId | The Android notification channel ID (new in Android O). The app must create a channel with this channel ID before any notification with this channel ID
can be received. If you don't send this channel ID in the request, or if the channel ID provided has not yet been created by the app, FCM uses the channel ID
specified in the app manifest. | string | |
ㅤ↳ticker | Sets the "ticker" text, which is sent to accessibility services. Prior to API level 21 (Lollipop), sets the text that is displayed in the status bar when
the notification first arrives. | string | |
ㅤ↳sticky | When set to false or unset, the notification is automatically dismissed when the user clicks it in the panel.
When set to true, the notification persists even when the user clicks it. | boolean | |
ㅤ↳eventTimestamp | For notifications that inform users about events with an absolute time reference, sets the time that the event in the notification occurred.
Notifications in the panel are sorted by this time. | string | ($date-time) |
ㅤ↳localOnly | Sets whether or not this notification is relevant only to the current device.
Some notifications can be bridged to other devices for remote display, such as a Wear OS watch. This hint can be set to recommend this
notification not be bridged. | boolean | |
ㅤ↳notificationPriority | Sets the relative priority for this notification. This priority is processed by the client after the message has been delivered. | | Enum: [ min, low, default, high, max ] |
ㅤ↳defaultSound | If set to true, use the Android framework's default sound for the notification. | boolean | |
ㅤ↳defaultVibrateTimings | If set to true, use the Android framework's default vibrate pattern for the notification. | boolean | |
ㅤ↳defaultLightSettings | If set to true, use the Android framework's default LED light settings for the notification. | boolean | |
ㅤ↳vibrateTimingsMillis | Set the vibration pattern to use. Pass in an array of milliseconds to turn the vibrator on or off. The first value indicates the duration to wait before
turning the vibrator on. The next value indicates the duration to keep the vibrator on. Subsequent values alternate between duration to turn the vibrator off
and to turn the vibrator on. | string | |
ㅤ↳visibility | Sets the visibility of the notification. | string | Enum: [ private, public, secret ] |
ㅤ↳notificationCount | Sets the number of items this notification represents. May be displayed as a badge count for Launchers that support badging. | integer | |
ㅤ↳imageUrl | URL of an image to be displayed in the notification. | string | |
*This is required. | | | |