Send event with publisher ID
Sends a new event to an Event Hub with a specified publisher ID.
Request
Method | Request URI |
---|---|
POST | https://{servicebusNamespace}.servicebus.windows.net/{eventHubPath}/publishers/{publisherId}/messages |
Request Headers
See Common parameters and headers for headers and parameters that are used by all requests related to Event Hubs.
Request Body
The body of the event message in plain text. For example:
{ “Location”: “Redmond”, "Temperature":"37.0" }
Response
The response includes an HTTP status code, a set of response headers, and a response body.
Response Codes
Code | Description |
---|---|
201 | Success. |
401 | Authorization failure. |
500 | Internal error. |
Response Body
If the request is successful, the response body is empty. If the request is not successful, the body contains an error code and error message.
Examples
Request
Note
You can also use an Azure Active Directory token for the Authorization header as noted in the Common parameters and headers. For example: Authorization: Bearer <Azure AD token>
.
POST https://your-namespace.servicebus.windows.net/your-event-hub/publisher/dev-01/messages?timeout=60&api-version=2014-01 HTTP/1.1
Authorization: SharedAccessSignature sr=your-namespace.servicebus.windows.net&sig=your-sas-key&se=1403736877&skn=RootManageSharedAccessKey
Content-Type: application/atom+xml;type=entry;charset=utf-8
Host: your-namespace.servicebus.windows.net
{ "DeviceId":"dev-01", "Temperature":"37.0" }
Response
HTTP/1.1 201 Created
Content-Type: application/xml; charset=utf-8
Server: Microsoft-HTTPAPI/2.0
Date: Tue, 23 Feb 2016 03:22:27 GMT
Content-Length: 0