Appearance
Testing & Troubleshooting
Message Preview
Available from both the Event Tables list and an individual Event Card, Message Preview shows exactly what would be sent for a real record — without actually sending anything.
It shows:
- The JSON payload, built from the fields you've registered.
- Whether the current record would currently pass the Insert and Modify filters (✅ pass, ❌ fail, blank if no filter is set for that event type).
- The
before/aftercomparison, if Include Previous Values is on for that table. - Either the full RabbitMQ message envelope or the outgoing HTTP headers, depending on the Endpoint Type configured on Setup.
Use the First Record / Previous Record / Next Record actions to page through actual records in the underlying table and see how the payload changes from one record to the next — handy for confirming filters and related fields behave the way you expect across a range of real data, not just one example row.

Send Test Payload
On Event Bridge Setup, Send Test Payload sends one dummy event (a fixed {"Test Message": "Hi!"} payload, event type insert, table name Test) straight to the configured endpoint. It's a quick way to confirm your endpoint URL and authorization are correct end to end, without needing any table registered yet.
Reading the error messages
If an event fails to send, Business Central shows one of these:
- "HTTP requests are blocked by your environment settings." — Outbound HTTP calls aren't enabled for this extension yet. The notification links directly to Extension Management, where you need to enable outbound HTTP for BC Event Bridge.
- "Failed to send event. Server responded with
<status>:<reason>." — The endpoint was reached, but rejected the request. The status code and reason phrase are your best lead — a401/403usually points at Authorization, anything else at the receiving system's own logs. - "Unable to find a valid endpoint setup." — The required URL field for your configured Endpoint Type (RabbitMQ API URL, or the API Endpoint) is empty. The notification links to Event Bridge Setup.
A note on who sees these errors
Failures surface as a Business Central notification on the session of whoever's action triggered the event — not necessarily an admin, and not in any central log inside Business Central. If a routine user's edit to a registered table happens to fail delivery, they're the one who sees the notification, and it may mean nothing to them.
If you're relying on Event Bridge for something operationally important, monitor delivery from the receiving side (RabbitMQ or your API endpoint's own logs) rather than expecting failures to be reported back to you from inside Business Central.
Who can use these
Message Preview and Send Test Payload need the same Event Bridge Admin access required for Setup and Event Tables — see Licensing and access.