---
name: "offBLETransparentDataReport"
mode: "kit"
versionRequirements:
  - { name: "DeviceKit", version: "3.0.0" }
platform:
  - "iOS"
  - "Android"
async: true
---

## offBLETransparentDataReport

> [VERSION] DeviceKit >= 3.0.0

> [PLATFORM] iOS, Android

> ⚡ **Supports Promise** — Returns a Promise when success / fail / complete callbacks are omitted.

### Description

BLE (thing) device passthrough data channel report notification

### Parameters

`(listener: Function)`

| Parameter | Type | Required | Default | Description |
| --- | --- | --- | --- | --- |
| `listener` | `(params: ThingBLETransparentDataBean) => void` | Yes | - | Event listener callback function |

### Referenced Types

##### `interface` ThingBLETransparentDataBean

| Property | Type | Since | Description |
| --- | --- | --- | --- |
| `deviceId` | `string` | `3.0.0` | Bluetooth transparent data deviceId: Device ID |
| `data` | `string` | `3.0.0` | data: Transparent payload |


### Examples

#### Demo

```tsx
const listener = function (res) { console.log(res) }
ty.device.onBLETransparentDataReport(listener)
ty.device.offBLETransparentDataReport(listener)
```
