---
title: "Adding content-available 1 to push notifications"
slug: "adding-content-available-1-to-push-notifications"
tags: ["background update"]
updated: 2025-12-11T21:55:11Z
published: 2025-12-11T21:55:11Z
canonical: "academy.insiderone.com/adding-content-available-1-to-push-notifications"
---

> ## Documentation Index
> Fetch the complete documentation index at: https://academy.insiderone.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Adding content-available 1 to push notifications

To send background (silent) updates using Insider's App Push, you can add content-available = 1 to your push notification payload.

## iOS-only requirement

The content-available = 1 flag applies only to **iOS** (APNs). Android devices ignore this field.

## App setup in Xcode

Before using background pushes, your app must enable **Background Modes → Remote notifications** in your app’s Xcode project. Without this, iOS will not deliver the background pushes.

### Delivery behavior

- Background pushes are not guaranteed.
- iOS may delay, merge, or drop them depending on battery, device state, or push frequency.
- Avoid relying on them for real-time guarantees.

For further information, refer to [Apple's Pushing Background Updates to Your App](https://developer.apple.com/documentation/usernotifications/pushing-background-updates-to-your-app).
