Delete a Noise Threshold
Deletes a noise threshold from a noise sensor.
Deletes a noise threshold from a noise sensor.
Code:
await seam.noiseSensors.noiseThresholds.delete({
noise_threshold_id: "00fbac13-6602-4079-b4ae-c89d5dcbed35",
device_id: "736fc5bf-192d-4416-b879-66ff0195f2f7",
});Output:
// voidDeletes a noise threshold from a noise sensor.
Code:
curl --include --request POST "https://connect.getseam.com/noise_sensors/noise_thresholds/delete" \
--header "Authorization: Bearer $SEAM_API_KEY" \
--json @- <<EOF
{
"noise_threshold_id": "00fbac13-6602-4079-b4ae-c89d5dcbed35",
"device_id": "736fc5bf-192d-4416-b879-66ff0195f2f7"
}
EOFOutput:
{}Deletes a noise threshold from a noise sensor.
Code:
seam.noise_sensors.noise_thresholds.delete(
noise_threshold_id="00fbac13-6602-4079-b4ae-c89d5dcbed35",
device_id="736fc5bf-192d-4416-b879-66ff0195f2f7",
)Output:
NoneDeletes a noise threshold from a noise sensor.
Code:
seam.noise_sensors.noise_thresholds.delete(
noise_threshold_id: "00fbac13-6602-4079-b4ae-c89d5dcbed35",
device_id: "736fc5bf-192d-4416-b879-66ff0195f2f7",
)Output:
nilDeletes a noise threshold from a noise sensor.
Code:
$seam->noise_sensors->noise_thresholds->delete(
noise_threshold_id: "00fbac13-6602-4079-b4ae-c89d5dcbed35",
device_id: "736fc5bf-192d-4416-b879-66ff0195f2f7"
);Output:
Deletes a noise threshold from a noise sensor.
Code:
seam noise-sensors noise-thresholds delete --noise_threshold_id "00fbac13-6602-4079-b4ae-c89d5dcbed35" --device_id "736fc5bf-192d-4416-b879-66ff0195f2f7"Output:
{}Request Parameters
device_id String (Required)
ID of the device that contains the noise threshold that you want to delete.
noise_threshold_id String (Required)
ID of the noise threshold that you want to delete.
Response
void
Last updated
Was this helpful?

