Detect data changes and update redux persist?

I know we can use redux-persist for saving our redux store in localstorage.
Let’s say I have a API data which I want to save in redux-persist.
But problem is that let’s say this data can be changed any time.

For example; I have a users list and I don’t want to get this users list on every page refresh so I decide to save them in redux-persist. But what will be happen if the new user added to db and I want to see this user also in my users list. How can I do this ? Is that even possible ? It’s look like silly question I know because if I want to detect new users I have to make a call anyway 😀 I just want to know is there anyway for that ?