Appearance
获取用户反馈回复列表
| 拥有此API的权限集 |
|---|
| 用户管理-查询 |
请求方式及url
- 请求方式:
POST - 请求头:
Content-Type:application/json - 接口地址:
https://api.xiaoe-tech.com/xe.user.feedback.reply_list/1.0.0 - 频率限制:
10秒3000次
接口调试
请求参数
响应结果
暂无响应数据
请求参数
| 参数名 | 必选 | 类型 | 说明 |
|---|---|---|---|
| access_token | 是 | string | 专属token |
| user_id | 是 | string | 用户id |
| feedback_id | 是 | string | 用户反馈对应的id |
请求示例
{
"access_token": "xxxxxxxx",
"feedback_id": "704915",
"user_id": "u_62c7e2511913c_JVbs2Jplce"
}返回参数
| 参数名 | 类型 | 说明 |
|---|---|---|
| code | int | 状态码:0-成功,其他为错误 |
| message | string | 对返回码的文本描述内容 |
| data.reply_list | array | 返回的回复列表 |
| data.reply_list_count | int | 总数 |
data.reply_list回复列表
| 参数名 | 类型 | 说明 |
|---|---|---|
| reply_list[].user_id | string | 反馈人id |
| reply_list[].send_user_phone | string | 回复人联系方式 |
| reply_list[].content | string | 回复内容 |
| reply_list[].state | int | 回复状态;0:正常,1:撤回 |
| reply_list[].send_at | string | 回复时间 |
返回示例
{
"code": 0,
"msg": "success",
"data": {
"reply_list": [
{
"content": "测试",
"send_at": "2022-12-07 17:14:07",
"send_user_phone": "13333333333",
"state": 0,
"user_id": "u_62c7e2511913c_JVbs2Jplce"
}
],
"reply_list_count": 81
}
}