Our Hosted Checkout

Example request

json

                   
    window.Malipo.open(
    {
        "merchantAccount": "111903104",
        "currency": "MWK",
        "amount": 50
        "order_id": "131",
        "description": "Subscription payment",
        "onSuccess": (result) => {
            document.getElementById('checkout-modal').style.display = 'none';
        },
        "onError": (error) => {
            console.error('Payment failed:', error);
        },
     });
    
Example Code