How to use the cloud variable to obtain the monitoring data change?

hi

I read this interesting post

How to use the variable cloud to obtain the monitoring data change function of the real-time database? - #2 by muneer?

which partly answers one of my concerns, however if I want to know which user whose data is modified it is not possible?

I don’t think you can do that with Thunkable blocks but it looks like you can use the API for that:

https://firebase.google.com/docs/reference/rest/database/#section-streaming

I haven’t tried it but if it can send the path and data values, you’ll have what you need:

The server may send the following events:

put

The JSON-encoded data is an object with two keys: path and data. The path key points to a location relative to the request URL. The client should replace all of the data at that location in its cache with data.

patch

The JSON-encoded data is an object with two keys: path and data. The path key points to a location relative to the request URL. For each key in data, the client should replace the corresponding key in its cache with the data for that key in the message.

It is also worth reading this