Webhooks वह झूठ नहीं बोलता।

हस्ताक्षरित, पुनः-संरक्षित, आपके 2xx तक पुनः प्रयास किया गया।

चालान/आदेश/धनवापसी घटनाओं की सदस्यता लें। अपने समापन बिंदु में HMAC-SHA256 सत्यापित करें। प्रत्येक डिलीवरी पर HMAC-SHA256 हस्ताक्षर किया जाता है, टाइमस्टैम्प किया जाता है, और जब तक आपका एंडपॉइंट 2xx वापस नहीं आ जाता, तब तक घातीय बैक-ऑफ के साथ पुनः प्रयास किया जाता है।

सूची

नौ घटनाएँ. सभी या एक की सदस्यता लें.

order.paid A buyer's payment was accepted.
order.failed Payment or checkout processing failed.
order.refunded The order was fully refunded.
delivery.completed A line item was delivered successfully.
delivery.failed A line-item delivery failed.
हेडर

आपके समापन बिंदु पर क्या पहुँचता है

POST /your-endpoint
# Standard headers Sellix sets on every delivery
X-Sellix-Event-Id:   7a2327ba-8655-45b4-a768-13e2112b2556
X-Sellix-Event:      order.paid
X-Sellix-Signature:  8f7a9a2b…
Content-Type:        application/json

# The exact raw body covered by X-Sellix-Signature
{
  "id": "7a2327ba-8655-45b4-a768-13e2112b2556",
  "object": "event",
  "event": "order.paid",
  "created_at": "2026-05-26T07:14:22Z",
  "data": { "order": { "uuid": "…", "total_cents": 4900, … } }
}
इंटरएक्टिव

HMAC-SHA256 सत्यापनकर्ता

एक पेलोड + रहस्य चिपकाएँ। हम वेब क्रिप्टो API का उपयोग करके आपके ब्राउज़र में लाइव हस्ताक्षर की गणना करते हैं - वही एल्गोरिदम जो हमारा एसडीके आपके सर्वर पर उपयोग करता है।

इसे जाँचने के लिए ऊपर एक हस्ताक्षर चिपकाएँ।
कार्यान्वयन

वही चेक, अपनी भाषा में


            

नीति पुनः प्रयास करें

  • Up to 6 attempts per delivery
  • Back-off: 10s → 30s → 2m → 10m → 1h
  • Any 2xx ends the chain; every non-2xx retries
  • After 20 cumulative failed attempts, the endpoint is disabled.

दोबारा खेलना और डुप्लिकेट करना

  • Verify X-Sellix-Signature against the exact raw request body.
  • Dedupe by X-Sellix-Event-Id. Retries keep the same id and body.
  • A replayed event should also return 200 - it's a feature, not a duplicate.