I want to create multiple function apps, but I'd like to know if it's possible for one function in one app to call another function in another app. I can't find any documentation on this. I looked at durable functions, but it appears the functions can talk to each other if they belong to the same task hub (i.e. same app).
Asked
Active
Viewed 233 times
1 Answers
0
Durable Functions won't work like this because the orchestrator needs to know about the other Functions, but there's no reason you can't trigger a function in another function app. Just invoke its trigger.

Derek Gusoff
- 780
- 4
- 6
-
Thanks. Can I only invoke HttpTriggers in other apps? What about other types of functions? – user246392 May 30 '20 at 03:23
-
You can use literally anything you want. Try it and see. – Derek Gusoff May 30 '20 at 03:31