Why Wallet Notifications?¶
Wallet push notifications bypass email inboxes and SMS filters, delivering directly to your customer's lock screen.
| Channel | Open Rate | CTR |
|---|---|---|
| ~20% | ~2% | |
| SMS | ~35% | ~6% |
| Wallet Push | +90% | +30% |
Types of Notifications¶
Pre-configured notifications that fire on loyalty events:
- Balance changed
- Tier upgraded/downgraded
- Reward unlocked
- Referral completed
No setup required — these work out of the box.
Send notifications at a specific date and time:
- Product launches
- Flash sales
- Seasonal campaigns
- Event reminders
Behavior-based notifications via Shopify Flow or Klaviyo:
- Abandoned cart reminders
- Post-purchase follow-ups
- Milestone celebrations
Geofencing notifications triggered by proximity:
Location-based notifications only work on Apple Wallet. Android does not support this feature.
- Activates at ~70-80 meters from location
- Works offline once campaign is on device
- Appears on lock screen without sound
Limits¶
There is a technical limit of 3 notifications per day per user on Android. This is an OS-level restriction, not a JeriCommerce limit.
Sending via Klaviyo¶
You can trigger push notifications from any Klaviyo Flow using a webhook action:
curl -X POST https://api.jericommerce.com/v1/push \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"customer_id": "12345",
"message": "Your reward is ready! Tap to redeem.",
"url": "https://yourstore.com/rewards"
}'