মার্চেন্ট APIs
- অনুরোধ তৈরি করুন
POST /api/merchant/payment-requests
- মার্চেন্ট status
GET /api/merchant/payment-requests/{reference}/status
- পাবলিক status
GET /api/payments/{reference}/status
- সাবমিট করুন tx hash
POST /api/merchant/payment-requests/{reference}/confirmations
- Webhook এন্ডপয়েন্ট
POST /api/merchant/webhook-endpoints
- Webhook ইভেন্ট
POST /api/merchant/webhook-events
পেমেন্ট Metadata
- Network
- FTY on Ethereum মেইননেট
- চেইন ID
- 137
- Settlement মুদ্রা
- FTY
- Customer preferences
- FTY, ETH, BTC, USDC, USDT
- সেটেলমেন্ট
- Furety ট্রেজারি Safe or merchant-configured approved ওয়ালেট
- Auth
X-Furety-Api-Key
cURL উদাহরণ
POST /api/merchant/payment-requests
X-Furety-Api-Key: fpk_...
{
"title": "Merchant checkout",
"fty_amount": "25.5",
"preferred_customer_currency": "USDC",
"customer_email": "customer@example.com"
}
JavaScript উদাহরণ
await fetch('/api/merchant/payment-requests', {
method: 'POST',
headers: {
'Content-Type': 'application/json',
'X-Furety-Api-Key': merchantApiKey
},
body: JSON.stringify({
title: 'Merchant checkout',
fty_amount: '25.5',
preferred_customer_currency: 'USDC'
})
});
PHP উদাহরণ
$response = Http::withHeaders([
'X-Furety-Api-Key' => $merchantApiKey,
])->post('https://furety.com/api/merchant/payment-requests', [
'title' => 'Merchant checkout',
'fty_amount' => '25.5',
'preferred_customer_currency' => 'USDC',
]);
নিরাপত্তা নিয়ম
এই অংশটি ডেভেলপার API, ইন্টিগ্রেশন, স্যান্ডবক্স, নিরাপদ রেসপন্স, webhook এবং Furety অবকাঠামো ব্যবহারের ভিত্তি ব্যাখ্যা করে।
preferred_customer_currency accepts FTY, ETH, BTC, USDC, এবং USDT. FTY remains টি সেটেলমেন্ট এবং সেবা ইউটিলিটি মুদ্রা unless a supported payment processor flow is explicitly enabled.
এই অংশটি মার্চেন্ট অনবোর্ডিং, পেমেন্ট লিংক, চেকআউট, সেটেলমেন্ট, রিপোর্টিং এবং নিরাপদ ব্যবসায়িক ব্যবহারের পথ ব্যাখ্যা করে।
FTY একটি ইউটিলিটি পেমেন্ট মুদ্রা। Furety স্টেকিং, ঋণদান, ইয়িল্ড, গ্যারান্টিযুক্ত রিটার্ন বা এক্সচেঞ্জ-দামের প্রতিশ্রুতি দেয় না।