MOBIAP Demo
Build and configure payment products: fee structures, split rules, escrow flows, and subscription billing.
Interactive Demo
Scenario: "Top-up + P2P Transfer" — configure blocks and run
Code Example
// Create payment scenario
const scenario = await constructor.createScenario({
name: 'Top-up + P2P Transfer',
blocks: [
{ type: 'payment_method', params: { methods: ['card', 'wallet'] } },
{ type: 'commission', params: { percent: 0.5, min: 10 } },
{ type: 'split', params: { receivers: ['merchant', 'partner'] } },
{ type: 'notification', params: { channels: ['sms', 'push'] } }
]
});
// Deploy scenario
await constructor.deploy(scenario.id, 'production');
// Testing
const test = await constructor.testScenario(scenario.id, {
amount: 1000,
method: 'card'
});Features
Let's discuss your project, show a demo, and estimate the cost.