Is there any interface to get hardware and camera event of adding/deleting/updating?

I want know is there any interface to:

  1. get hardware and camera event of adding/deleting/updating.
  2. get event when camera were added into or removed from camera group

Explore the ConfigUpdated sample.

But i want a PROTOCOL INTEGRATION interface.

The best option is that you build an small Event Server plugin that utilize the VideoOS.Platform.Messaging.MessageId.System.SystemConfigurationChangedIndication (like the sample does) and then you use your preferred method to communicate this to your program. Some .NET development is required, there is no pure protocol integration recipe for developing this.

@Bo Ellegård Andersen (Milestone Systems)​ , where can I find this ConfigUpdated sample?

I’m trying similar things by placing a camera in a specific folder when it’s added to the system.

I even want to add some conditional logic in there, where the camera is added to a folder when it’s name contains a specific string.

You need to use the ConfigurationApi to place a camera in a folder.

I see, thank you for the reply.