Our websocket API ( WebSocket API ) is designed and used as a way to receive automatic updates when you subscribe to a certain “page” (like table to receive table updates).
There is no configuration or parameters that would modify in what shape the data should be in (that I know of).
I understand, this is currently not possible. The payload is send to any websocket client so it needs the ids for the web application to work. Perhaps we could include the field name there as extra attribute, but that won’t help you now.
I recommend you to query for the fields via REST API separately and do the mapping on your side.
“Perhaps we could include the field name there as extra attribute, but that won’t help you now.”
That would be great.
Also WebSoscket needs JWT_Token, that means only known users can connect to websocket and listening to changes. Is there a way to do the same for anonymous users ? like realtime database in firebase.