Webhooks هذا لا يكذب.

تم التوقيع، وإعادة التشغيل المحمي، وإعادة المحاولة حتى 2xx.

اشترك في أحداث الفاتورة / الطلب / استرداد الأموال. تحقق من HMAC-SHA256 في نقطة النهاية الخاصة بك. يتم توقيع كل عملية تسليم بـ HMAC-SHA256 وختمها بالوقت وإعادة المحاولة مع التراجع الأسي حتى ترجع نقطة النهاية الخاصة بك 2xx.

كتالوج

تسعة أحداث. اشترك في الكل أو واحد.

order.paid A buyer's checkout finalised. Settled on-chain.
order.refunded Refund pushed back to the buyer's wallet.
order.delivered Auto-delivery completed - key, file, or webhook handed over.
order.failed Checkout expired or rejected.
product.created Product published from API or dashboard.
product.updated Any field on a product changed.
payout.queued Payout request accepted, broadcast pending.
payout.confirmed Payout confirmed on-chain.
customer.created New buyer email registered in your shop.
الرؤوس

ما يهبط على نقطة النهاية الخاصة بك

POST /your-endpoint
# Standard headers Sellix sets on every delivery
X-Event-Id:          evt_01J2PT83A5XKJZ5N6FM5YV9B2D
X-Event-Type:        order.paid
X-Webhook-Timestamp: 1779604200
X-Signature:         sha256=8f7a9a2b…
Content-Type:        application/json
User-Agent:          Sellix-Webhook/1.0

# Body - JSON, the resource that fired the event
{
  "id":   "evt_01J2PT83A5XKJZ5N6FM5YV9B2D",
  "type": "order.paid",
  "data": { "order_uuid": "…", "total_cents": 4900, … }
}
تفاعلية

HMAC-SHA256 المدقق

لصق حمولة + سر. نقوم بحساب التوقيع مباشرة في متصفحك باستخدام Web Crypto API - نفس الخوارزمية التي يستخدمها SDK الخاص بنا على الخادم الخاص بك.

الصق التوقيع أعلاه للتحقق منه.
تطبيق

نفس الاختيار، في لغتك


            

إعادة محاولة السياسة

  • Up to 8 attempts per delivery
  • Back-off: 1m → 2m → 5m → 15m → 1h → 6h → 24h
  • Any 2xx ends the chain; 4xx / 5xx retries
  • Endpoint dies for 48h straight? We disable it and email the owner.

إعادة التشغيل والحذف

  • Reject any timestamp more than 5 minutes off - replay protection.
  • Dedupe by X-Event-Id on your side. Same id twice = same event.
  • A replayed event should also return 200 - it's a feature, not a duplicate.