#### 接口版本: |版本号|制定人|修订日期|说明| |:----|:----|:---- |:----| |1.0 |Karen |2021-11-05 |建立文档| #### 请求URL: - {{HOST}}/api/feedback/replies #### 请求方式: - POST #### 请求头: |参数名|是否必须|类型|说明| |:---- |:---|:----- |----- | |Content-Type |是 |string |application/json | |Accept |是 |string |application/json | |Authorization|是|string|Bearer {token},`登录`接口获取| |uuid |否 |string |uuid,每个接口都会通过 headers 头返回 | |locale |否 |string |语言,默认 en,更多配置查看文件 `/config/strongshop.php` 中 `langs`| |currency |否 |string |货币,默认 USD,更多配置查看文件 `/config/strongshop.php` 中 `currencies`| #### 请求参数: |参数名|是否必须|类型|说明| |:---- |:---|:----- |----- | |parent_id|是|integer|反馈id| #### 返回示例: **正确时返回:** ``` { "code": 200, "message": "common.Success", "data": { "current_page": 1, "data": [ { "id": 2, "user_id": 0, "type": 0, "title": "谢谢。期待您的更多反馈", "content": "谢谢。期待您的更多反馈", "created_at": "2021-08-08 13:32:47", "updated_at": "2021-09-25 16:01:21", "admin_id": 1, //管理员信息 "admin_user": { "id": 1, "name": "Admin" } } ], "first_page_url": "http://demo.strongshop.local/api/user/feedback/replies?page=1", "from": 1, "last_page": 1, "last_page_url": "http://demo.strongshop.local/api/user/feedback/replies?page=1", "next_page_url": null, "path": "http://demo.strongshop.local/api/user/feedback/replies", "per_page": 100, "prev_page_url": null, "to": 14, "total": 14 } } ``` #### 返回CODE说明: |参数名|说明| |:----- |----- | |200 |成功 | |3001 |字段验证错误 | |5001|服务内部错误| #### 备注: - 更多返回错误代码请看首页的错误代码描述