Skip to content

Silent push notifications

Push notifications allow you to send out notifications from your app when important events occur.

You might send a push notification when you have an important alert for a user. Push notifications can also be silent, containing no alert message or sound, being used only to update your app’s interface or trigger background work. Silent push notifications can wake your app from a “Suspended” or “Not Running” state to update content or run certain tasks without notifying your users.

Braze has several features which rely on silent push notifications:

Feature User Experience
Uninstall Tracking User receives a silent, nightly uninstall tracking push.
Geofences Silent syncing of geofences from server to device.

Setting up silent push notifications

To use silent push notifications to trigger background work, you must configure your app to receive notifications even when it is in the background. To do this, add the Background Modes capability using the Signing & Capabilities pane to the main app target in Xcode. Select the Remote notifications checkbox.

Xcode showing the "remote notifications" mode checkbox under "capabilities".

Even with the remote notifications background mode enabled, the system will not launch your app into the background if the user has force-quit the application. The user must explicitly launch the application or reboot the device before the app can be automatically launched into the background by the system.

For more information, refer to pushing background updates and the application:didReceiveRemoteNotification:fetchCompletionHandler: documentation.

Sending silent push notifications

To send a silent push notification, set the content-available flag to 1 in a push notification payload.

The content-available flag can be set in the Braze dashboard as well as within our Apple push object in the messaging API.

The Braze dashboard showing the "content-available" checkbox found in the "settings" tab of the push composer.

When sending a silent push notification, you might also want to include some data in the notification payload, so your application can reference the event. This could save you a few networking requests and increase the responsiveness of your app.

iOS silent notifications limitations

The iOS operating system may gate notifications for some features. Note that if you are experiencing difficulties with these features, the iOS’s silent notifications gate might be the cause.

Refer to Apple’s instance method and unreceived notifications documentation for more details.

HOW HELPFUL WAS THIS PAGE?
New Stuff!