Webhook Orchestrator Produce a complete webhook receiver and event routing specification. The output is the technical design a developer uses to build the webhook endpoint, event router, and retry infrastructure. Webhook Receiver Design Endpoint specification : | Field | Value | |-------|-------| | URL structure | | | HTTP method | POST only (reject GET, PUT, DELETE with 405) | | Content-Type required | | | TLS | Required — TLS 1.2 minimum. Reject HTTP (respond with 301 or close connection). | | IP allowlist | If source system provides a list of static egress IPs, add them to the allowlist. D…