diff --git a/zh-cn/application-dev/reference/apis/js-apis-device-manager.md b/zh-cn/application-dev/reference/apis/js-apis-device-manager.md
index e584fbb5c0e6b12d847858e83cc5a908c6b8d943..220958a59e1ae5517502d2daffd7ded5c3dd116c 100644
--- a/zh-cn/application-dev/reference/apis/js-apis-device-manager.md
+++ b/zh-cn/application-dev/reference/apis/js-apis-device-manager.md
@@ -283,6 +283,46 @@ getTrustedDeviceListSync(): Array<DeviceInfo>
}
```
+### getTrustedDeviceListSync10+
+
+getTrustedDeviceListSync(isRefresh: boolean): Array<DeviceInfo>
+
+打开软总线系统端的心跳模式,让周围处于下线状态的可信设备快速上线,同时刷新已上线的可信设备列表。
+
+**需要权限**:ohos.permission.ACCESS_SERVICE_DM
+
+**系统能力**:SystemCapability.DistributedHardware.DeviceManager
+
+**参数:**
+
+| 参数名 | 类型 | 必填 | 说明 |
+| ------------- | --------------------------------- | ---- | ---------------------------------- |
+| isRefresh | boolean | 是 | 是否打开心跳模式,刷新可信列表。 |
+
+**返回值:**
+
+| 名称 | 说明 |
+| -------------------------------------- | ---------------- |
+| Array<[DeviceInfo](#deviceinfo)> | 返回可信设备列表。 |
+
+**错误码:**
+
+以下的错误码的详细介绍请参见[设备管理错误码](../errorcodes/errorcode-device-manager.md)
+
+| 错误码ID | 错误信息 |
+| -------- | --------------------------------------------------------------- |
+| 11600101 | Failed to execute the function. |
+
+**示例:**
+
+ ```js
+ try {
+ var deviceInfoList = dmInstance.getTrustedDeviceListSync(true);
+ } catch (err) {
+ console.error("getTrustedDeviceListSync errCode:" + err.code + ",errMessage:" + err.message);
+ }
+ ```
+
### getTrustedDeviceList8+
getTrustedDeviceList(callback:AsyncCallback<Array<DeviceInfo>>): void