← Back to Push docs

Push Notifications Docs

FCM Configuration for DNZ Notifications

FCM is used for native Android and Firebase-oriented delivery paths. It complements Web Push instead of replacing it for browser users.

FCM configurationFirebase Cloud MessagingAndroid push notifications

Credential model

Upload or configure the FCM credentials for the workspace in the mobile push area. Treat service account material as secret and never ship it to a mobile app.

The app registers a device token or connection data with the backend. The backend stores it under the recipient and routes future push messages to the available transport.

{
  "recipientId": "user_123",
  "platform": "android",
  "deviceTransport": "mobile_background",
  "connectionId": "android-device-connection",
  "nativeFcmToken": "fcm-token-from-device"
}

Related content