Get a Noise Threshold
Returns a specified noise threshold for a noise sensor.
Returns a specified noise threshold for a noise sensor.
Code:
await seam.noiseSensors.noiseThresholds.get({
noise_threshold_id: "8282891b-c4da-4239-8f01-56089d44b80d",
});Output:
{
"device_id": "736fc5bf-192d-4416-b879-66ff0195f2f7",
"ends_daily_at": "2025-06-19T12:38:44.000Z",
"name": "My Noise Sensor",
"noise_threshold_decibels": 50,
"noise_threshold_id": "8282891b-c4da-4239-8f01-56089d44b80d",
"noise_threshold_nrs": 40,
"starts_daily_at": "2025-06-20T18:29:57.000Z"
}Returns a specified noise threshold for a noise sensor.
Code:
curl --include --request POST "https://connect.getseam.com/noise_sensors/noise_thresholds/get" \
--header "Authorization: Bearer $SEAM_API_KEY" \
--json @- <<EOF
{
"noise_threshold_id": "8282891b-c4da-4239-8f01-56089d44b80d"
}
EOFOutput:
{
"noise_threshold": {
"device_id": "736fc5bf-192d-4416-b879-66ff0195f2f7",
"ends_daily_at": "2025-06-19T12:38:44.000Z",
"name": "My Noise Sensor",
"noise_threshold_decibels": 50,
"noise_threshold_id": "8282891b-c4da-4239-8f01-56089d44b80d",
"noise_threshold_nrs": 40,
"starts_daily_at": "2025-06-20T18:29:57.000Z"
}
}Returns a specified noise threshold for a noise sensor.
Code:
Output:
Returns a specified noise threshold for a noise sensor.
Code:
Output:
Returns a specified noise threshold for a noise sensor.
Code:
Output:
Returns a specified noise threshold for a noise sensor.
Code:
Output:
Request Parameters
noise_threshold_id String (Required)
ID of the noise threshold that you want to get.
Response
Returns: noise_threshold
Last updated
Was this helpful?

