Settings

Manage demo system settings and data

Data Overview

Current data stored in your browser

0

Merchants

0

Bank Accounts

0

Orders

Demo Data

Load sample data to test the system

Click the button below to load demo merchant and bank account data. This is useful if you want to quickly explore the system without creating data manually.

API Integration

Sample code for integrating UPI payments

// Create a payment order
const response = await fetch('https://api.indianupi.com/v1/orders', {
  method: 'POST',
  headers: {
    'Content-Type': 'application/json',
    'Authorization': 'Bearer YOUR_API_KEY'
  },
  body: JSON.stringify({
    amount: 1000,
    currency: 'INR',
    description: 'Order payment',
    callback_url: 'https://yoursite.com/callback'
  })
});

const order = await response.json();
// Redirect user to order.checkout_url

This is a demo system. In production, you would integrate with a real UPI payment gateway.

Security Note

About data storage in this demo

  • All data is stored locally in your browser's LocalStorage
  • No data is sent to any server
  • Data persists until you clear browser data or use the reset button
  • API keys generated here are for demo purposes only

Danger Zone

Irreversible actions

This will permanently delete all merchants, bank accounts, and orders. You'll need to set everything up again from scratch.