Simulate Triggering a Noise Threshold
Simulates the triggering of a noise threshold for a noise sensor in a sandbox workspace.
Simulates the triggering of a noise threshold for a noise sensor in a sandbox workspace.
Code:
await seam.noiseSensors.simulate.triggerNoiseThreshold({
device_id: "c0384c1c-9038-427c-9a72-314d2b168d43",
});Output:
// voidSimulates the triggering of a noise threshold for a noise sensor in a sandbox workspace.
Code:
curl --include --request POST "https://connect.getseam.com/noise_sensors/simulate/trigger_noise_threshold" \
--header "Authorization: Bearer $SEAM_API_KEY" \
--json @- <<EOF
{
"device_id": "c0384c1c-9038-427c-9a72-314d2b168d43"
}
EOFOutput:
{}Simulates the triggering of a noise threshold for a noise sensor in a sandbox workspace.
Code:
seam.noise_sensors.simulate.trigger_noise_threshold(
device_id="c0384c1c-9038-427c-9a72-314d2b168d43"
)Output:
NoneSimulates the triggering of a noise threshold for a noise sensor in a sandbox workspace.
Code:
seam.noise_sensors.simulate.trigger_noise_threshold(
device_id: "c0384c1c-9038-427c-9a72-314d2b168d43",
)Output:
nilSimulates the triggering of a noise threshold for a noise sensor in a sandbox workspace.
Code:
$seam->noise_sensors->simulate->trigger_noise_threshold(
device_id: "c0384c1c-9038-427c-9a72-314d2b168d43"
);Output:
Simulates the triggering of a noise threshold for a noise sensor in a sandbox workspace.
Code:
seam noise-sensors simulate trigger-noise-threshold --device_id "c0384c1c-9038-427c-9a72-314d2b168d43"Output:
{}Request Parameters
device_id String (Required)
ID of the device for which you want to simulate the triggering of a noise threshold.
Response
void
Last updated
Was this helpful?

