USD
รับชำระเงินใน:


ยังไม่ได้เลือกที่อยู่


URL Webhook 

https://....yourwebsite.com

เลือกคริปโตเคอเรนซีสำหรับรับการชำระเงิน:

USDT, TRC20

USDT, BEP20

USDT, ERC20

BTC, Bitcoin

VMT, Mitilena

APFC, ERC20
ตัวระบุอัตโนมัติ (VS) สำหรับการชำระเงินหลายรายการ 
รับคริปโตเคอเรนซีแบบอัตโนมัติเต็มรูปแบบผ่าน API คำอธิบายทั่วไปของ API พร้อมใช้งานในสภาพแวดล้อมใดก็ได้ และยังมี ปลั๊กอินสำหรับร้านค้าออนไลน์ Wordpress WooCommerce.
สัญลักษณ์แปรผัน — รหัสอ้างอิงสำหรับติดตามการชำระ เพื่อติดตาม เราเพิ่ม 4 หลักท้ายจำนวนเงิน เช่น USDT บน Tron มี 6 ตำแหน่งหลังจุด ใช้สองหลักแรก เช่น 10.55 (10 ดอลลาร์ 55 เซนต์) พร้อมสัญลักษณ์แปรผันจะเป็น 10.550001 จริง ๆ แล้วน้อยกว่าหนึ่งเซนต์ 1,000 เท่า — ผู้ซื้อไม่จ่ายเกิน แต่ติดตามการชำระได้
เมื่อใช้ถึง 10,000 รหัสในโหมด Merchant จะเพิ่มที่อยู่ 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! */เมื่อได้รับอ็อบเจ็กต์นี้และตรวจแล้ว คุณสามารถทำเครื่องหมายคำสั่งในฐานข้อมูลว่าชำระแล้ว เรามีคำอธิบายที่ครบถ้วนกว่า ในบล็อกของเรา
สร้าง QR โค้ด
