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. عمليًا أقل بـ 1000 مرة من سنت — المشتري لا يدفع زيادة. لكن يمكن تتبع الدفع.
عند استنفاد حتى 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
