← Back to Push docs

Push Notifications Docs

APNs Configuration for iOS Push

APNs is Apple's native push channel for iOS. DNZ Notifications prepares a workspace-level place for APNs credentials so iOS devices can be routed through the native channel when configured.

APNs configurationiOS push notificationsApple push notification service

iOS routing

An iOS app should register its native device token with your backend or notification registration endpoint. The token should be associated with the same `recipientId` used by web and other devices.

Keep APNs keys and team identifiers server-side. Device tokens are not the same as provider credentials; they identify a device route, not permission to send as your app.

{
  "recipientId": "user_123",
  "platform": "ios",
  "deviceTransport": "mobile_background",
  "connectionId": "ios-device-connection",
  "nativeApnsToken": "apns-token-from-device"
}

Related content