How to Integrate
Add this code to your website:
<!-- Easypay SDK -->
<script src="/js/easypay-sdk.js"></script>
<!-- Payment Button -->
<button id="payButton">Pay Now</button>
<!-- Initialize Easypay -->
<script>
const easypay = new Easypay();
document.getElementById('payButton').onclick = function() {
easypay.createPayment({
amount: 510.00,
method: 'bkash',
description: 'Premium Package'
}).then(data => {
if (data.success) {
window.location.href = data.data.payment_url;
}
});
};
</script>
View Full Documentation