> ## Documentation Index
> Fetch the complete documentation index at: https://docs.seam.co/llms.txt
> Use this file to discover all available pages before exploring further.

# Noise Thresholds Events

> Webhook events that Seam emits for the Noise Thresholds resource, with example payloads and properties.

## `noise_sensor.noise_threshold_triggered`

Extended periods of noise or noise exceeding a [threshold](https://docs.seam.co/capability-guides/noise-sensors#what-is-a-threshold) were detected.

```json Example webhook payload theme={null}
{
  "connected_account_custom_metadata": {},
  "connected_account_id": "00000000-0000-0000-0000-000000000000",
  "created_at": "2025-01-01T00:00:00.000Z",
  "customer_key": "",
  "device_custom_metadata": {},
  "device_id": "00000000-0000-0000-0000-000000000000",
  "event_id": "00000000-0000-0000-0000-000000000000",
  "event_type": "noise_sensor.noise_threshold_triggered",
  "minut_metadata": {},
  "noise_level_decibels": 0,
  "noise_level_nrs": 0,
  "noise_threshold_id": "00000000-0000-0000-0000-000000000000",
  "noise_threshold_name": "",
  "noiseaware_metadata": {},
  "occurred_at": "2025-01-01T00:00:00.000Z",
  "workspace_id": "00000000-0000-0000-0000-000000000000"
}
```

<Accordion title="Properties">
  <ResponseField name="connected_account_custom_metadata" type="Object">
    Custom metadata of the connected account, present when connected\_account\_id is provided.
  </ResponseField>

  <ResponseField name="connected_account_id" type="String (UUID)">
    ID of the connected account associated with the event.
  </ResponseField>

  <ResponseField name="created_at" type="String (ISO 8601)">
    Date and time at which the event was created.
  </ResponseField>

  <ResponseField name="customer_key" type="String">
    The customer key associated with the device, if any.
  </ResponseField>

  <ResponseField name="device_custom_metadata" type="Object">
    Custom metadata of the device, present when device\_id is provided.
  </ResponseField>

  <ResponseField name="device_id" type="String (UUID)">
    ID of the affected device.
  </ResponseField>

  <ResponseField name="event_id" type="String (UUID)">
    ID of the event.
  </ResponseField>

  <ResponseField name="event_type" type="Enum (String)">
    Value: `noise_sensor.noise_threshold_triggered`
  </ResponseField>

  <ResponseField name="minut_metadata" type="Object">
    Metadata from Minut.
  </ResponseField>

  <ResponseField name="noise_level_decibels" type="number">
    Detected noise level in decibels.
  </ResponseField>

  <ResponseField name="noise_level_nrs" type="number">
    Detected noise level in Noiseaware Noise Risk Score (NRS).
  </ResponseField>

  <ResponseField name="noise_threshold_id" type="String (UUID)">
    ID of the noise threshold that was triggered.
  </ResponseField>

  <ResponseField name="noise_threshold_name" type="String">
    Name of the noise threshold that was triggered.
  </ResponseField>

  <ResponseField name="noiseaware_metadata" type="Object">
    Metadata from Noiseaware.
  </ResponseField>

  <ResponseField name="occurred_at" type="String (ISO 8601)">
    Date and time at which the event occurred.
  </ResponseField>

  <ResponseField name="workspace_id" type="String (UUID)">
    ID of the workspace associated with the event.
  </ResponseField>
</Accordion>
