ใช้ API สำหรับตัวแทนจำหน่าย eSIMDual ในเว็บไซต์หรือแอปของคุณเอง
This documentation covers the production and sandbox APIs: authentication, public packages, purchases, eSIM delivery, usage, compatible recharges, unused-eSIM cancellation, refunds, wallet data and signed webhooks.
เริ่มต้นอย่างรวดเร็ว
- 1Start safely with POST /sandbox/login
- 2ส่งโทเค็น Bearer ไปยังปลายทางที่ได้รับการป้องกันทั้งหมด
- 3Use Idempotency-Key on every purchase, recharge and cancellation
- 4Switch to production only after reseller approval
https://esimdual.com/api/reseller/v1
https://esimdual.com/api/reseller/v1/sandbox
Authorization: Bearer <token>
Idempotency-Key: unique-order-key
Sandbox safety
Sandbox orders use a fictitious balance and simulated eSIMs. They never call an upstream supplier and never debit the production wallet. Use the simulate endpoint to test installed, active and consumed states, then verify accepted, rejected and manual-review refund flows.
curl --request POST 'https://esimdual.com/api/reseller/v1/sandbox/login' \
--header 'Content-Type: application/json' \
--data '{"email":"partner@example.com","password":"YOUR_PASSWORD","device_name":"sandbox-ci"}'
ตัวอย่างคำขอเข้าสู่ระบบ
curl --request POST 'https://esimdual.com/api/reseller/v1/login' \
--header 'Content-Type: application/json' \
--data '{
"email": "partner@example.com",
"password": "StrongPassword123!",
"device_name": "production-server",
"expires_in_days": 90
}'
ตัวอย่างใบสั่งซื้อ
curl --request POST 'https://esimdual.com/api/reseller/v1/orders' \
--header 'Authorization: Bearer YOUR_TOKEN' \
--header 'Idempotency-Key: ORDER-2026-0001' \
--header 'Content-Type: application/json' \
--data '{
"package_id": 1120,
"external_order_id": "NOANET-2026-0001",
"device_imei": "356938035643809"
}'
Compatible recharge flow
GET /esims/{id}/topup-options
POST /topups
Idempotency-Key: TOPUP-2026-0001
{
"esim_id": "{id}",
"package_id": 456
}
Unused eSIM cancellation
POST /esims/{id}/cancel
Idempotency-Key: CANCEL-2026-0001
Automatic refund only when the supplier confirms:
- zero usage
- never installed
- never activated
- no completed recharge exists
- original wallet debit is verified
เหตุการณ์ Webhook
eSIMDual signs timestamp.raw_payload with HMAC SHA-256. The secret is generated by eSIMDual and displayed only after creation or rotation. Reject timestamps older than five minutes and deduplicate X-eSIMDual-Delivery.
X-eSIMDual-EventX-eSIMDual-DeliveryX-eSIMDual-TimestampX-eSIMDual-Signature: v1=…การตรวจสอบลายเซ็น PHP
$rawBody = file_get_contents('php://input');
$timestamp = $_SERVER['HTTP_X_ESIMDUAL_TIMESTAMP'] ?? '';
$received = $_SERVER['HTTP_X_ESIMDUAL_SIGNATURE'] ?? '';
$fresh = ctype_digit($timestamp) && abs(time() - (int) $timestamp) <= 300;
$expected = 'v1=' . hash_hmac('sha256', $timestamp . '.' . $rawBody, $webhookSecret);
if (!$fresh || !hash_equals($expected, $received)) {
http_response_code(401);
exit('Invalid or stale signature');
}
จัดเก็บค่า X-eSIMDual-Delivery แต่ละค่าและปฏิเสธการส่งซ้ำ ส่งกลับการตอบกลับ HTTP 2xx หลังจากยอมรับเหตุการณ์แล้วเท่านั้น