Integrate Klaviyo e-commerce SMS and email marketing automation natively into your mobile app.
Integrate Klaviyo e-commerce marketing automation into your mobile app. Nativine embeds native Klaviyo Mobile SDKs, enabling personalized push notifications, abandoned cart SMS triggers, and real-time customer event tracking.
Klaviyo is the premier marketing automation platform for Shopify and e-commerce stores. Nativine's native integration bridges Klaviyo event tracking from your web store directly to native mobile push and SMS engines:
Viewed Product, Added to Cart, and Started Checkout events natively to Klaviyo flows.To identify users or log e-commerce events to Klaviyo in JavaScript, call nativine.klaviyo.track():
// Identify user profile
nativine.klaviyo.identify({
email: '[email protected]',
phoneNumber: '+15550192834',
first_name: 'Jane'
});
// Track e-commerce event
nativine.klaviyo.track({
eventName: 'Started Checkout',
properties: {
$value: 129.50,
ItemNames: ['Leather Jacket', 'Black Denim']
}
});
| Parameter | Type | Description |
|---|---|---|
email | string | Optional. Customer email address for Klaviyo profile lookup. |
eventName | string | Required. Event name matching Klaviyo flow triggers. |
Yes. The native Klaviyo SDK registers APNs tokens automatically when users grant push permission on iOS.
Yes. Pass custom event properties to trigger automated Klaviyo flows featuring dynamic product blocks.