In my use case, I have a service that looks something like: POST /resource/:id
and I want to direct my webhook to that service based on the POST request body sent into the webhook. So if the POST to /my-webhook is { id: 'xyz' }, it directs to /resource/xyz.
See PR here: #22