.Net communication between API and Azure functions app

85 Views Asked by At

I am currently solving a possibly trivial problem. I have an API service where I receive some data, which I process and send to Azure Functions service which is actually an archive (database) using message broker (+blob storage). In the archive service I use Power BI to create reports. However, there is now a need to get the data from the archive service to the API so I can provide it using the API and get it to the frontend.

Of course, you could probably create Azure Functions HTTP and stick it in some gateway, but I don't know if that's exactly right. Unfortunately I can't find much of an article on this so I'm turning to you. So my question is how do I get the data from the archive service (Azure functions) into the API service?

Thanks a lot

1

There are 1 best solutions below

3
Donny Kwitty On

Create an HTTP-triggered function and call this from your API.