Home > front end >  Is that possible to send and retrieve message to queue or topic using Azure resource manager API
Is that possible to send and retrieve message to queue or topic using Azure resource manager API

Time:11-01

I am a beginner in Azure and using PHP and Azure Manager or Service REST API passing a message to queue or subscriber.

I am able to send and receive messages using a service API (servicebus.windows.net).

is that way to send and receive messages using Azure Manager API(Management.azure.com)?

CodePudding user response:

No there is no way, with the management API you can do certain operations such as deleting the namespace, authorization rules, entities,etc. Sending and Receiving messages are data operations that can only be done via the Service API.

  • Related