Is it possible to receive events from Azure Event Hubs using REST API? I have found only send event API in the Azure documentation. How to GET events?
Asked
Active
Viewed 1,679 times
1 Answers
4
REST is not supported on the Event Hubs consumer side. Consumers must use one of these two protocols:
- AMQP
- Kafka
Please check this sample on sending and receiving events: https://learn.microsoft.com/en-us/azure/event-hubs/get-started-dotnet-standard-send-v2

Serkant Karaca
- 1,896
- 9
- 8