MOBIAP Demo
Full admin panel for loyalty platforms: rules engine, customer segmentation, analytics, and reward management.
Interactive Demo
Rules Engine — manage rules, segments, and analytics
Code Example
// Create loyalty rule
const rule = await loyalty.createRule({
name: 'Buy 3 Get 1 Free',
trigger: 'purchase',
condition: {
category: 'coffee',
minItems: 3
},
reward: {
type: 'free_product',
productId: 'coffee_any'
}
});
// Segment users
const segment = await loyalty.createSegment({
name: 'VIP Fall 2024',
filters: [
{ spent: { gt: 50000 } },
{ visits: { gt: 10 } }
]
});
// Start A/B test
const ab = await loyalty.startABTest({
name: 'Cashback 5% vs 10%',
segments: ['A', 'B'],
duration: 14
});Features
Let's discuss your project, show a demo, and estimate the cost.