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

## getPanelAgentCustomRolePage

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

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

### 描述

查询自定义角色列表（分页）。

### 参数

`Params`

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

### 引用对象

##### `interface` GetPanelAgentCustomRolePageParams

| 属性 | 类型 | 描述 |
| --- | --- | --- |
| `devId` | `string` | 设备ID |
| `pageNo` | `number` | 页码 |
| `pageSize` | `number` | 每页条数 |
| `roleCategory` | `string` | 角色分类 |

##### `type` GetPanelAgentCustomRolePageResult

```typescript
CommonPageResult<PanelAgentCustomRoleListItem>
```


### 示例代码

#### 请求示例

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

const params = {
  devId: 'your_device_id',
  pageNo: 1,
  pageSize: 10,
  roleCategory: 'assistant',
};

getPanelAgentCustomRolePage(params)
  .then(result => {
    console.log('自定义角色列表:', result);
  })
  .catch(error => {
    console.error('获取自定义角色列表失败:', error);
  });
```

#### 返回示例

```json
{
  "page": 1,
  "pageSize": 10,
  "totalPage": 1,
  "total": 1,
  "list": [
    {
      "roleId": "role_custom_001",
      "roleName": "智能助手小美",
      "roleDesc": "温柔贴心的智能助手",
      "roleIntroduce": "我是小美，您的专属智能助手",
      "roleImgUrl": "https://example.com/role_avatar.jpg",
      "useLangCode": "zh-CN",
      "useLangName": "中文（简体）",
      "useTimbreId": "timbre_001",
      "useTimbreName": "温柔女声",
      "useLlmId": "1001",
      "useLlmName": "GPT-3.5-turbo",
      "inBind": true,
      "templateId": "template_001",
      "inConversation": false,
      "lastTextAnswer": "您好，有什么可以帮助您的吗？"
    }
  ]
}
```
