MOBIAP Demo
Point-of-sale terminal interface with card processing, receipt generation, and transaction management.
Interactive Demo
Code Example
// Initialize terminal
const terminal = new PaymentTerminal({
merchantId: 'merchant_456',
terminalId: 'T-001',
apiKey: 'sk_live_***'
});
// Card payment
const payment = await terminal.processCard({
amount: 3500.00,
currency: 'USD',
cardPresent: true // chip/NFC
});
// QR payment (Apple Pay)
const qrPayment = await terminal.processWallet({
amount: 1299.00,
wallet: 'apple_pay'
});
// Print receipt
await terminal.printReceipt(payment.id);Features
Let's discuss your project, show a demo, and estimate the cost.