# 用户反馈管理 - 获取用户反馈详情

> 模块标识：userFeedback  |  接口数量：3

## 接口说明
**方法**：	GET

**路径**：				/api/user-feedbacks/{id}

**功能说明**：
根据反馈ID获取详细信息

### 请求参数
```json
{
  "path": [
    {
      "name": "id",
      "type": "string",
      "required": true,
      "description": "用户反馈ID"
    }
  ]
}
```

### 响应示例
```json
{
  "success": {
    "code": "0000",
    "message": "获取成功",
    "data": {
      "id": 1,
      "code": "UF0001",
      "systemCode": "AUTH_MANAGEMENT",
      "payload": {
        "content": "功能建议",
        "type": "feature"
      },
      "siteKey": "86AFEA7A-xxxx",
      "createTime": "2025-01-01T10:00:00.000Z"
    }
  },
  "failure": {
    "code": "4040",
    "message": "用户反馈不存在",
    "data": null
  }
}
```

