---
name: "deletePanelAgentCustomRole"
mode: "kit"
versionRequirements:
  - { name: "@tuya-miniapp/cloud-api", version: "1.0.6" }
---

## deletePanelAgentCustomRole

> [VERSION] @tuya-miniapp/cloud-api >= 1.0.6

> 💡 接口依赖云能力，需在 [小程序开发者平台](https://platform.tuya.com/miniapp/)开发设置 - 云能力 进行授权配置。

### 描述

删除自定义角色。

### 参数

`Params`

| 参数 | 类型 | 必填 | 默认值 | 描述 |
| --- | --- | --- | --- | --- |
| `params` | `DeletePanelAgentCustomRoleParams` | 是 | - | 请求体 |

### 引用对象

##### `interface` DeletePanelAgentCustomRoleParams

| 属性 | 类型 | 描述 |
| --- | --- | --- |
| `devId` | `string` | 设备ID |
| `roleId` | `string` | 角色ID |


### 示例代码

#### 请求示例

```typescript
import { deletePanelAgentCustomRole } from '@tuya-miniapp/cloud-api';

const params = {
  devId: 'your_device_id',
  roleId: 'role_custom_12345',
};

deletePanelAgentCustomRole(params)
  .then(result => {
    console.log('删除结果:', result);
  })
  .catch(error => {
    console.error('删除自定义角色失败:', error);
  });
```

#### 返回示例

```json
true
```
