Webhook configuration isn't self-service yet. Contact your Intasef account contact to register your webhook URL and receive your signing secret. The Partner Portal Webhooks page shows delivery history once your webhook is configured, but it doesn't let you register or rotate a webhook yourself — and the API Keys page holds a different kind of secret (your HMAC signing keys, not your webhook secret).
trade.{status} — fires on every trade status change (e.g. trade.funded, trade.released)seller.{status} — seller onboarding status changesbuyer.{status} — buyer onboarding status changes (Marketplace partners with KYC-gated buyers only){
"trade_id": "...",
"reference": "...",
"status": "funded",
"external_reference": "your-own-order-id-123"
}Every delivery includes:
X-Intasef-Signature — sha256=<hex digest>, an HMAC-SHA256 of the raw request body using your webhook secretX-Intasef-Delivery-Id — a unique ID per delivery attempt, for deduplication on your endRecompute the HMAC over the exact raw bytes you received and compare it against the signature header before trusting the payload.
Failed deliveries retry with exponential backoff, up to 6 attempts total (the initial delivery plus 5 retries). If a delivery is ever missed entirely, GET /api/partner/v1/trades/{id}/ is always available as a fallback — webhooks are the primary channel, polling is the safety net.