Nutzen Sie die eSIMDual-Reseller-API auf Ihrer eigenen Website oder in Ihrer App.
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.
Schnellstart
- 1Start safely with POST /sandbox/login
- 2Senden Sie Bearer-Token an alle geschützten Endpunkte
- 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"}'
Beispiel einer Anmeldeanfrage
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
}'
Musterbestellungsanfrage
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-Ereignisse
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-Signaturprüfung
$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');
}
Speichern Sie jeden X-eSIMDual-Delivery-Wert und lehnen Sie doppelte Zustellungen ab. Geben Sie erst nach Annahme des Ereignisses eine HTTP-2xx-Antwort zurück.