# Update Client Configuration Update sounding client[s] configuration. Endpoint: PATCH /network/{network_id}/sounding/clients Security: ApiKey ## Path parameters: - `network_id` (integer, required) Motion Network ID (returned as 'id' by Find API calls) ## Query parameters: - `update` (boolean) When true the new configuration is immediately propagated to the network this node is part of. If this value is false, the change will be propagated to edge either when the device is rebooted or an update is triggered. ## Request fields (application/json): - `devices` (array, required) Example: [{"id":0,"location":"LocationA"},{"mac":"00:11:22:33:44:55","sensitivity":1,"sounding_mode":"allow"}] - `devices.mac` (string) The Mac address of the target device. Example: "22:33:44:ff:ee:dd" - `devices.device_id` (string) Contains the Serial number, Node Id, or Device ID. - `devices.id` (string) Internal node_id or device_id of the target node. - `devices.friendly_name` (string) Human readable name assigned to the Device or Node. Maximum of 256 characters, supporting letters, spaces, digits, with only the following special characters: , , , , , . Supports base64 encoding. Can also be an empty string. Example: "name" - `devices.location` (string) Device location name assigned to the Device or Node. Maximum of 256 characters, supporting letters, spaces, digits, with only the following special characters: , , , , , . Supports base64 encoding. Can also be an empty string. Example: "location" - `devices.sensitivity_mode` (string) Indicates whether the device is using the global sensitivity setting or is being overridden at the device level. Enum: "override", "global" - `devices.sensitivity` (number) Current sensitivity of the device Only valid when sensitivity_mode = override, otherwise an error will be returned. - `devices.sounding_mode` (string) Controls if the device can be used for sounding. Enum: "allow", "deny" - `devices.sounding_mesh` (string) Applicable only to nodes. Controls if the node will accept or reject sounding on mesh links. Enum: "allow", "deny" ## Response 200 fields (application/json): - `status` (integer) 0 failure 1 full success 2 some changes failed 3 an IoT update was requested but network has not yet started up - `success` (integer) 1 if the operation was successful, 0 otherwise - `details` (object) The list of warnings or errors that occurred during processing of this request. - `details.warnings` (array) - `details.warnings.msg` (string) The message for the warning. - `details.warnings.id` (string) The ID of the error message. - `details.errors` (array) ## Response 400 fields (application/json): - `error` (string) Error Type - `message` (string) Reason for failure - `statusCode` (integer) HTTP Status code for the given error. - `validation` (object) object containing the items that failed validation. ## Response 404 fields (application/json): - `error` (string) network not found Example: "something went wrong"