2

I am working on a scenario where when I need to create a new servicebus queue and an azure function that is triggered whenever a message is dropped in the said queue. Is there a way to call an API pass in some parameters and have the queue and function created ?

Any inputs will be much appreciated

w2olves
  • 2,229
  • 10
  • 33
  • 60

1 Answers1

2

Technically, You can achieve both as far as i know.

You can create a new function with the CLI command , i do not think there is an API to do the same.

To create a Service Bus queue you can do it with the Nuget package and here is an answer already.

Sajeetharan
  • 216,225
  • 63
  • 350
  • 396