# Retrieve Global Settings Retrieve global network configurations. Endpoint: GET /network/{network_id}/sounding/settings Security: ApiKey ## Path parameters: - `network_id` (integer, required) The Network ID is a unique identifier that is assigned to a WiFi Motion network when it is created. The Network ID is used by applications such as AppCloud, Device Manager, and via APIs, to uniquely identify a network. ## Response 200 fields (application/json): - `zone_priority_list` (array) The zone_priority_list is a list of locations within a WiFi Motion network that is configured by the end user. The list indicates which rooms are within the user's dwelling and can be used to map WiFi devices with the rooms that they are located in. The zone_priority_list is used to help determine which devices to be used for placement when the Default Sounding Mode is enabled. The order of the list identifies the user's priorities, with the locations at the top of the list being considered the top priority. Example: ["Kitchen"] - `motion_events_enabled` (integer) Enable motion events. On detected motion, the network emits a MotionDetectedEvent. Enum: 0, 1 - `device_events` (integer) Enable Device Connection Events. Requires global sounding_mode to equal deny and individual devices' sounding_mode to equal allow. When the connection state of device changes, an event is emitted. Possible events are: DeviceConnectedEvent, DeviceDisconnectedEvent and DeviceTimedOutEvent Enum: 0, 1 - `motion_history_enabled` (number) Enable historical motion data from the network. The data can be queried through the Motion History APIs. Enum: 0, 1 - `mesh_auto_disable` (integer) Disable motion detection on all current and added mesh nodes. Enum: 0, 1 - `mesh_sounding_disabled` (array) Mesh nodes that are disabled for motion detection. To alter this array, set sounding_mesh on the clients API or enable mesh_auto_disable Example: [] - `motion_events_armed` (integer) Enable storage of motion events. Requires motion_events_enabled to be enabled. The stored events can be queried through the Events APIs. Enum: 0, 1 - `motion_paused` (integer) Pauses all motion detection. While paused, the network can't receive setting changes. Enum: 0, 1 - `leafblower_cutoff` (number) Advanced - Minimum score for device selection algorithm. -1.1 ignores the device's quality, and always uses them for motion detection. This feature should be used in conjunction with the sounding_mode features. - `link_limit` (number) Maximum number of motion-detecting devices per access point or mesh node - `pet_mode` (integer) When enabled, pet motion is less likely to generate a MotionDetectedEvent. Is expected to be used when global sensitivity is set to high (1.0). While it is possible to bypass this configuration, alterations to individual client devices or to other global values may yield reduced event performance. - 0 - Disable Pet-mode - 1 - Enable Pet-mode Enum: 0, 1 - `cooldown` (integer) Represents the duration of inactivity following a MotionDetectedEvent, that the network keeps monitoring for motion. Once inactivity is observed, the network emits a MotionStoppedEvent and concludes the event window. Example: 120 - `sensitivity` (number) Below is a chart that provides a description of the different Sensitivity Levels that are available: {% table %} - Sensitivity Level {% width="15%" %} - Description {% width="65%" %} - Numerical Representation --- - High - Motion levels of all sizes will trigger detection. Provides optimal coverage for most single family / detached dwellings. - 1 --- - Medium - Motion levels that are moderate or greater will trigger detection. Provides optimal coverage for most dwellings that share one or more walls with a neighbor. - 2 --- - Low - Only motion levels that are large to intense will trigger detection. Low and Very Low sensitivity may result in missed motion and are only recommended if too much motion is being reported at a higher setting. - 3 --- - Very Low - Only motion levels that are large to intense will trigger detection. This setting is typically only used in scenarios such as a small accommodation with shared walls. Low and Very Low sensitivity may result in missed motion and are only recommended if too much motion is being reported at a higher setting. - 7 --- {% /table %} Example: 1 - `sounding_mode` (string) This parameter controls the default device selection policy for the network, the two policy modes are allow and deny. Allow mode: devices will be selected as best determined by the device selection algorithm. Devices can be blocked from selection by setting txenble=0 for that leaf(s). Deny mode: devices that are not explicitly listed via a whitelist will be disallowed from sounding. Note switching this mode will clear any existing device device availability settings and all devices will revert to available for allow mode or unavailable for deny mode. Enum: "allow", "deny" ## Response 404 fields (application/json): - `error` (string) network not found Example: "something went wrong"