Check your eligibility for this 50% exam voucher offer and join us for free live learning sessions to get prepared for Exam DP-700.
Get StartedJoin us at the 2025 Microsoft Fabric Community Conference. March 31 - April 2, Las Vegas, Nevada. Use code FABINSIDER for $400 discount. Register now
I've created an Custom App endpoint for my eventstream and can easily call this from Power Automate/Logic App.
However, I've some issues calling the same Event Hub endpoint from e.g., Postman seems to be harder.
Does anyone have a sample/tutorial/guide on how to push data from Postman to my Eventstream eventhub endpoint?
Solved! Go to Solution.
Hi @trondb ,
You can try the following:
1. Generate SAS Token for Authentication.
Event Hubs require a SAS (Shared Access Signature) token for authentication. You can generate this token using Azure PowerShell or Azure CLI.
Authenticate access to Azure Event Hubs with shared access signatures - Azure Event Hubs | Microsoft...
2. Configure Postman Request.
In Postman, you'll need to set up your request with the correct HTTP method (typically POST for sending events), the URL of your Event Hub endpoint, and headers. The most crucial header will be Authorization, where you'll paste the SAS token generated in step 1.
3. Set Request Body.
The body of your request should contain the event data you wish to send to the Event Hub. Ensure the body is correctly formatted (usually as JSON) and matches the schema expected by your Eventstream.
The following links may be helpful:
Azure Event Hubs documentation | Microsoft Learn
Stream real-time events from a custom app to a Microsoft Fabric KQL database - Microsoft Fabric | Mi...
Best Regards,
Dino Tao
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Great input. Turns out I forgot to add /messages to end of the URL. Works great!
Hi @trondb ,
You can try the following:
1. Generate SAS Token for Authentication.
Event Hubs require a SAS (Shared Access Signature) token for authentication. You can generate this token using Azure PowerShell or Azure CLI.
Authenticate access to Azure Event Hubs with shared access signatures - Azure Event Hubs | Microsoft...
2. Configure Postman Request.
In Postman, you'll need to set up your request with the correct HTTP method (typically POST for sending events), the URL of your Event Hub endpoint, and headers. The most crucial header will be Authorization, where you'll paste the SAS token generated in step 1.
3. Set Request Body.
The body of your request should contain the event data you wish to send to the Event Hub. Ensure the body is correctly formatted (usually as JSON) and matches the schema expected by your Eventstream.
The following links may be helpful:
Azure Event Hubs documentation | Microsoft Learn
Stream real-time events from a custom app to a Microsoft Fabric KQL database - Microsoft Fabric | Mi...
Best Regards,
Dino Tao
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Check out the February 2025 Fabric update to learn about new features.