Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is it possible to receive events from Azure Event Hubs using REST API?

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?

like image 644
Michael Chudinov Avatar asked Sep 13 '25 11:09

Michael Chudinov


1 Answers

REST is not supported on the Event Hubs consumer side. Consumers must use one of these two protocols:

  1. AMQP
  2. 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

like image 199
Serkant Karaca Avatar answered Sep 17 '25 20:09

Serkant Karaca