push module lets your backend fan a notification out to every registered device belonging to one or more users — across iOS (APNs), Android (FCM), and Web Push — in a single call.
Requires the
push bundle and configured provider credentials (APNs, FCM, or Web Push) in the project dashboard. See Push Notifications for the full setup guide.send
Sends a push notification to all registered devices for the given user IDs. Dispatches to APNs, FCM, and Web Push in parallel.string[]
required
Sublay user IDs to notify. Maximum 100 per call.
string
required
Notification title shown on the device.
string
required
Notification body text.
Record<string, any>
Optional key-value payload forwarded to the app alongside the notification. Use for deep links, entity IDs, or any context your app needs when the user taps.
Rich payload fields
All optional. Each maps to whichever platform(s) support it and is silently ignored elsewhere (e.g.subtitle/threadId are iOS-only, channelId is Android-only). See Rich notification payloads for the platform setup each one needs.
string
Sound file to play. iOS: APNs
sound. Android: on 8+ the sound is owned by the notification channel — pair this with channelId and create that channel client-side with the sound set. Web: forwarded to your service worker.number
iOS app-icon badge count (APNs
badge). No Android equivalent. Your backend supplies the number — Sublay does not track per-user unread counts.string
Android notification channel id (FCM). The channel must be created client-side; on Android 8+ it governs sound, importance, and vibration.
"high" | "normal"
Delivery priority.
high wakes the device for time-sensitive pushes; normal is power-considerate. Maps to APNs apns-priority and FCM android.priority.string
iOS subtitle line shown under the title (APNs
alert.subtitle).string
Rich/big-picture image URL. Works out of the box on Android (FCM) and Web. On iOS it additionally requires a Notification Service Extension in your app; the URL is forwarded in the payload and
mutable-content is set automatically.string
Display-replace key so notifications collapse in the UI instead of stacking (FCM
android.notification.tag, Web tag). Use a per-conversation value to keep one entry per thread.string
Transport-level collapse identifier (APNs
apns-collapse-id, FCM collapse_key) — a newer push supersedes an undelivered one with the same id.string
iOS notification grouping (APNs
thread-id).number
Time-to-live in seconds for offline devices (APNs
apns-expiration, FCM android.ttl). After this window the provider stops retrying.boolean
iOS
mutable-content flag, letting your Notification Service Extension modify the payload (e.g. attach imageUrl). Set implicitly when imageUrl is provided.Promise<SendPushResult>
userId is present in results — users with no registered devices get an empty array. Stale device tokens that are permanently rejected by the upstream provider are automatically removed; you don’t need a separate cleanup step.
Example response:
reason values when success is false:

