If you select in your player controller AC_PC_Interaction you can scroll down in the βDetailsβ tab where you can find several events that you can add and that trigger on different interactions:
You can optionally also add in the Class Settings of either your player controller or your character/pawn the interface BPI_InteractionNotifier. This contains the same events that trigger whenever a player interacts.
The naming of the events show you that the events that start with Local are triggered on the client that interacted. In comparison the events that start with Server are only triggered on the server and by that offer in multiplayer a better cheat protection. For example if you want to pick up an item only the server should be allowed to add it to the player.
Also the Server events are only triggering on the player who interacted. For example you get a notification if you destroyed an interactable and it will only be called for you since it was validated by the server. So if there was another player trying to destroy the interactable at the same time it will never be called on both players only on the player that was quicker.