0

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).

user246392
  • 2,661
  • 11
  • 54
  • 96

1 Answers1

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