Enable live, real-time communication by connecting your client to the BizData360 Websocket API. Receive instant updates without repeated requests.
What is a Websocket?
A websocket is a full-duplex communication protocol that allows continuous data transfer between client and server. It ensures low-latency, real-time updates.
Websocket Endpoint
To test the websocket URL in eZintegrations, configure your request as follows:
URL:
wss://{{BaseUrl}}/api/ws?client_id={{client_id}}
Header:
client-secret = {{client-secret}}
Message Format
Send JSON messages to the websocket connection:
{
"eventType": "broadcast_notification",
"fromClientId": "admin_client",
"message": "System maintenance is scheduled at 01:00 AM UTC",
"priority": "high",
"timestamp": "2025-04-16T13:00:00Z"
}
Common Note
Use the same client_id and client-secret as Webhook integration to ensure real-time data is routed correctly to your websocket client. Retrieve credentials from My Profile in your BizData360 account.
