Getting Started with UnelmaPay¶
Welcome to UnelmaPay! This guide will help you integrate our payment processing system into your application.
Prerequisites¶
Before you begin, you'll need: - A merchant account with UnelmaPay - Your merchant ID (provided during registration) - A web server to host your payment forms and callbacks
Integration Options¶
UnelmaPay offers multiple integration methods:
- Payment Form - Simple HTML form integration (easiest)
- API Integration - Direct API calls for more control
- SDKs - Coming soon for popular programming languages
Quick Start: Payment Form¶
The fastest way to get started is with our payment form integration. Add this code to your website:
<form method="POST" action="https://dev.unelmapay.com/sci/form">
<input type="hidden" name="merchant" value="YOUR_MERCHANT_ID">
<input type="hidden" name="item_name" value="Product Name">
<input type="hidden" name="amount" value="10.00">
<input type="hidden" name="currency" value="debit_base">
<input type="hidden" name="custom" value="ORDER_ID">
<button type="submit">Pay Now</button>
</form>
Next Steps¶
- Set up IPN callbacks to receive payment notifications - See IPN Callback Documentation
- Test your integration in the development environment - See Testing Guide
- For production, update the form action to
https://unelmapay.com.np/sci/form