Hey all I'm still getting used to Azure functions a little bit and trying to figure out how we might apply them in our application. I've currently got a situation where I am using a Service Bus Queue Trigger function to activate whenever a message pops in the queue and I would then like to post a request to a 3rd party API when that message has been handled.
I understand that with Azure functions I can configure an output binding but is there anything already setup to execute a REST request on output? I'm currently assuming that we are going to have to include RestSharp and format the request ourselves within the function but is there an easier better way to do this?