20.3 Delivering Push Notifications
Send push notifications from native processes or PL/SQL to users who opted in.
Use the native Send Push Notification page process or workflow activity to
send a push notification to your app users. APEX automatically delivers them only to users who have opted-in to receive them.
The native action type in task definitions and automations works identically. To send a
push notification from business logic, use the SEND_PUSH_NOTIFICATION
procedure in the APEX_PWA package. To monitor the queue of outgoing
push notifications, use the APEX_PUSH_NOTIFICATIONS_QUEUE view.
- Enabling Push Notifications in an App
Enable PWA and push notification support so users can install your app and opt in to notifications. - Generating Key Pairs for Push Notifications
Generate a key pair credential to encrypt and sign push notifications. - Letting Users Manage Notification Settings
Add notification settings pages so users can manage push notification opt-in. - Opting-In to Receive Push Notifications
Users opt in to push notifications from the user settings menu on each device. - Pushing a Smile to a Colleague
Send a push notification to an opted-in user from a native page process. - Overriding Notification Target Link
Configure a push notification target link to open a specific app page. - Pushing Notification from Business Logic
Send push notifications from PL/SQL business logic withAPEX_PWA.SEND_PUSH_NOTIFICATION.
Parent topic: Notifying End Users