USD
भुगतान स्वीकार करीं:


पता ना चुनल


Webhook URL 

https://....yourwebsite.com

भुगतान स्वीकार करे खातिर क्रिप्टो चुनीं:

USDT, TRC20

USDT, BEP20

USDT, ERC20

BTC, Bitcoin

VMT, Mitilena

APFC, ERC20
कई भुगतान खातिर ऑटो पहिचानकर्ता (VS) 
API से पूरा स्वचालित क्रिप्टो स्वीकार करीं। API के सामान्य विवरण कवनो वातावरण में लागू करे खातिर उपलब्ध, साथे Wordpress WooCommerce ऑनलाइन स्टोर खातिर प्लगइन.
वेरिएबल सिंबल — भुगतान ट्रैक करे के रेफरेंस। ट्रैक खातिर राशि के अंत में 4 अंक जोड़िला; उदा. Tron पर USDT में बिंदु के बाद 6 अंक। पहिला दू इस्तेमाल, जइसे 10.55 (10 डॉलर 55 सेंट), वेरिएबल सिंबल के संगे 10.550001। असल में ई एक सेंट से 1000 गुना कम — खरीददार अधिक ना देला। बाकिर भुगतान ट्रैक हो सकेला।
Merchant-मोड में 10 000 कोड खतम भइला पर अपने आप नया USDT पता जुड़ी अगिला 10 000 कोड खातिर — आ एही तरह असीम। एहसे रोज हजार ऑर्डर वाला बड़का स्टोर भी चला सकीलें।
नाहीं त हर भुगतान खातिर अलग पता चाहीं। फेर सभ धन एक पता पर जमा करे खातिर नेटवर्क कमीशन देवे के पड़ी। उदाहरण खातिर, अगर 100 पता पर 100 भुगतान बा, त एक पता पर जमा करे खातिर (एक्सचेंज वगैरह) 100 बेर कमीशन देवे के पड़ी (0.9$ प्रति)। हमनी ऊपर बतावल रेफरेंस नंबर से एह कमी के पार कइनी।
Your server must be able to accept a POST request to the address you specified as the webhook. Here is an example in Javascript (Express.js framework)
app.post('/mi_webhook_subscription/', bodyParser.json(), (request, response) => {
try {
let eventObj = request.body;
const signature = request.headers['mitilena-signature'];
if (signature === endpointSecretMitilenaNewOur) {
if (!eventObj.statusObj) {
return response.status(400).send('Error, no object.');
}
let hookObj = eventObj.statusObj;
...We will send you an object in JSON format. The object will have the following fields, as well as a secret key.
Your private secret key:
You should only process requests to your webhook that contain this key.
Your private secret key:
You should only process requests to your webhook that contain this key.
statusObj = {
mitilenaInvoiceId: 'auto-683dc5-03f2c0-e3f06a-example-string', // never undefined
yourPaymentId: 'stringOrNull', // never undefined
yourProductName: 'stringOrNull', // never undefined
yourProductId: 'stringOrNull', // never undefined
secretKey: 'your-unique-secret-key', // never undefined,
stableCoinAmount: 0, // number, never undefined
stableCoinSymbol: 'USDT', // never undefined
stableCoinBlockchain: 'tether-trc20', // never undefined
stableCoinContractAddress: 'TR7NHqjeKQxGTCi8q8ZY4pL8otSzgjLj6t', // string | null
localCurrencyAmount: 0, // number, never undefined
localCurrencyCode: 'EUR', /// ISO 4217 currency code, never undefined
wasPaid: true, // true | false, never undefined
}
/* payment time === webhook call time.
We try to send a request immediately after the payment is detected
!!!
If the secret key is incorrect or at least one field is
undefined - this is a fake request, do not set the order
as paid in your system! */अइसन ऑब्जेक्ट पा के जाँचे के बाद — आपन DB में ऑर्डर भुगतल चिह्नित क सकीलें। हमनी लगे अउरी पूरा विवरण बा हमनी के ब्लॉग पर।
QR-कोड जेनरेट करीं
