Apple Push Notification Service (APNS)
Learn how to use the Apple Push Notification Service (APNS) provider to send push notifications using Novu
This guide explains how to configure and use the Apple Push Notification Service (APNS) with Novu to deliver push notifications to iOS devices. It outlines:
- The required setup in your Apple Developer account.
- The connection process in Novu.
- How to manage device tokens and message payloads.
Configuring APNS with Novu
Before sending notifications, APNS must be configured with the correct credentials from your Apple Developer account. Novu uses these credentials to securely authenticate with Apple’s servers.
Obtain APNS credentials
Apple provides two authentication options for connecting to APNS:
- A certificate-based
.p12certificate - A token-based
.p8key
Novu supports both, but this guide focuses on the .p8 token-based approach, which is recommended for most production setups.
To generate the required credentials, use an Apple Developer account with an Admin role. Follow Apple’s official steps to create and download a private .p8 key.
The following identifiers are also needed for integration:
- Key ID: A unique 10-character identifier for the authentication key.
- Team ID: This is found in your Apple Developer account.
- Bundle ID: The identifier for your app, which is available in the app info section.
Add APNS credentials to Novu
Once the Apple credentials are available, you can add them in Novu’s Integration Store.
- Log in to your Novu account.
- On your dashboard, click Integration Store.
- Click Connect provider.
- Click the Push tab.
- Select APNS.
- In the APNS integration form, fill in the Name and Identifier fields.
- In the Delivery Provider Credentials section, fill in the following fields:
- Private Key: The content of your
.p8file. - Key ID: Your 10-character Key ID.
- Team ID: Your 10-character Team ID.
- Bundle ID: Your app's Bundle ID.

- Private Key: The content of your
- Click Create Integration.
Sending notifications with APNS
After configuration, APNS can be used in any Novu workflow that includes a Push step. The process involves registering device tokens for subscribers and then triggering workflows to deliver messages.
Registering subscriber device tokens
Each subscriber (user) must have one or more device tokens registered to receive push notifications. Tokens can be added or updated through Novu’s API using the Update Subscriber Credentials endpoint.
Triggering workflows
Once subscribers’ devices are registered, push notifications are delivered through workflows that include a Push step. A workflow can be triggered using the Novu SDK or API.
Customizing notifications with overrides
Novu supports an overrides field that lets you attach APNS-specific payload parameters when triggering a workflow. This feature is useful for customizing the behavior or presentation of notifications, such as setting titles, bodies, or custom data fields.
The overrides field supports all APNS Notification payload values. Here is an example: