I want to use a service bus as a webhook
according to https://docs.microsoft.com/en-us/rest/api/servicebus/send-message-batch I can access the service using post request but I need to add an authentication which is not possible for the webhook I'm using
I thought I could add an intermediate layer using azure function, so basically the azure function is the webhook and it forwards the message to the service bus but I can't include Microsoft.Azure.ServiceBus in azure function so I can't do that as well
Is there a way simple way I can forward the message to the service bus?