Shipment Notification Namespace
Example Connection with Namespace
const shipmentNotificationSocket = io('https://ws.one-record.fr/shipment-notification', {
auth: {
access_token: '<access_token_here>',
},
});Available Events in Namespace
Message
shipmentNotificationSocket.on('message', (data) => {
// Handle the data received from the message event
console.log('Shipment Notification Received:', data);
});Last updated