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

## getPanelAgentCurrentChatEmotion

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

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

### 描述

获取当前聊天心情。

### 参数

`Params`

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

### 引用对象

##### `interface` GetPanelAgentCurrentChatEmotionParams

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


### 示例代码

#### 请求示例

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

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

getPanelAgentCurrentChatEmotion(params)
  .then(result => {
    console.log('当前聊天心情:', result);
  })
  .catch(error => {
    console.error('获取聊天心情失败:', error);
  });
```

#### 返回示例

```json
{
  "emotionOpen": true,
  "emotion": "happy",
  "text": "我现在心情很好！",
  "url": "https://example.com/happy_emoji.png",
  "gmtCreate": 1699200000000,
  "gmtModified": 1699200300000
}
```
