দয়া করে এডমিনের সাথে যোগাযোগ করুন আপনার একাউন্টটি পুনরায় সচল করার জন্য।
Contact Superadmin on TelegramDirect bKash, Nagad & Mobile Gateway SaaS
| TrxID | Provider | Amount | Sender Mobile | Status | Date & Time |
|---|---|---|---|---|---|
| No transactions recorded yet | |||||
| Invoice ID | Amount | Customer | Status | Created Date | Actions |
|---|---|---|---|---|---|
| Loading invoices... | |||||
Use this live API Key to pair your Android Gateway App and integrate WooCommerce or custom website checkouts.
123456789) অথবা Username (যেমন: @your_username) ইনপুট দিয়ে Save Gateway Settings করুন এবং Test Telegram Alert প্রেস করুন!
Standard SMSPayBD & UddoktaPay REST API references with multi-language code snippets.
Create a new payment intent and generate a customer checkout URL.
| Field Name | Data Type | Required | Description |
|---|---|---|---|
amount |
Number |
Yes | Payment charge amount in BDT (e.g. 500). |
customer_name |
String |
Optional | Full name of customer. |
customer_email |
String |
Optional | Email address of customer. |
redirect_url |
String |
Optional | URL to redirect customer upon payment completion. |
webhook_url |
String |
Optional | URL to receive instant JSON IPN callback. |
curl -X POST "https://amjpay-api.amjpay-gateway.workers.dev/api/v1/checkout/create" \
-H "Authorization: Bearer YOUR_MERCHANT_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"amount": 500,
"customer_name": "Rahim Ahmed",
"customer_email": "rahim@example.com",
"redirect_url": "https://yourstore.com/success",
"webhook_url": "https://yourstore.com/api/amjpay-webhook"
}'
{
"status": true,
"message": "Payment initialised successfully",
"charge_id": "CHG_0376DD2B4E",
"payment_url": "https://amjpay-api.amjpay-gateway.workers.dev/checkout.html?charge_id=CHG_0376DD2B4E"
}
Query and verify payment status using TrxID or Charge ID.
curl -X POST "https://amjpay-api.amjpay-gateway.workers.dev/api/v1/checkout/verify" \
-H "Content-Type: application/json" \
-d '{
"charge_id": "CHG_0376DD2B4E",
"trx_id": "DGQ1QPFVOF",
"provider": "BKASH"
}'
Instead of redirecting customers away, open an interactive payment popup modal on your website with 1 line of JS script!
<!-- Add Javascript Library before </body> -->
<script src="https://amjpay-api.amjpay-gateway.workers.dev/checkout.js"></script>
<script>
function payWithPopup() {
PaySheba.init({
charge_id: "CHG_0376DD2B4E" // Replace with charge_id returned by /checkout/create
});
}
</script>
<button onclick="payWithPopup()">Pay ৳500 Now</button>
1. App makes a POST request to /api/v1/checkout/create using your API Key.
2. Open the returned payment_url inside a WebView component.
3. Listen for the redirect to redirect_url to close the WebView and show your order confirmation screen!