jedrek
jedrek

Reputation: 91

HTTPS endpoint of Azure event hub

I am using service that can only send messages using webhook. The only thing I can set up in that webhook are HTTP endpoint, user name and password (you can see it on the screenshot below). I would like to send messages to my event hub, but I don't know how to find its HTTP endpoint. The only thing I could find was SAS Endpoint.

enter image description here

Upvotes: 1

Views: 5598

Answers (1)

Jesse Squire
Jesse Squire

Reputation: 7755

Event Hubs offers a REST API that allows you to perform a subset of the operations supported by its AMQP API. Publishing basic events via REST is possible and would use the endpoint: https://{servicebusNamespace}.servicebus.windows.net/{eventHubPath}/messages.

The full set of documentation for the REST API can be found here, and the specifics for sending events here.

Upvotes: 1

Related Questions