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 में paid चिह्नित कर सकते हैं। हमारे पास और पूरा विवरण है हमारे ब्लॉग पर।
QR-कोड जेनरेट करें
