---
name: "SmartGroupModel.offDeviceInfoUpdated"
mode: "api"
versionRequirements:
  - { name: "@ray-js/panel-sdk", version: "1.5.0" }
title: "offDeviceInfoUpdated"
---

## SmartGroupModel.offDeviceInfoUpdated

> [VERSION] @ray-js/panel-sdk >= 1.5.0

### Description

Unsubscribe from smart group device info change events

### Parameters

`Params`

| Parameter | Type | Required | Description |
| --- | --- | --- | --- |
| `id` | `number` | Yes | Listener ID returned by onDeviceInfoUpdated |

### Return Value

None


### Examples

#### Example

```typescript
const id = group.onDeviceInfoUpdated((data) => {
  console.log('Group info changed:', data);
});
// Unregister when needed
group.offDeviceInfoUpdated(id);
```
