Node-RED Flow - How to access List of HttpIn node flows in dot net application

I have list of flows created in Node RED flow editor and want to access all the flows which has used HTTPIn node as a list in dotnet application.

Please guide me how we can achieve it.

Thanks
Arminder

Read the flows file (or access the API) to get all flows (in JSON format)

filter the flows JSON to where .type === "http in"

Then you can read the endpoint set for that node from .url & the methof from .method


PS: To figure this out for any node, look at the info tab to see what properties it has:
image

and look at the export JSON of a node for more detail and exact property names

thanks for so quick response Steve . will try it

This topic was automatically closed 60 days after the last reply. New replies are no longer allowed.