#### 接口版本: |版本号|制定人|修订日期|说明| |:----|:----|:---- |:----| |1.0 |Karen |2021-11-05 |建立文档| #### 请求URL: - {{HOST}}/api/feedback/index #### 请求方式: - 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`| #### 请求参数: |参数名|是否必须|类型|说明| |:---- |:---|:----- |----- | #### 返回示例: **正确时返回:** ``` { "code": 200, "message": "common.Success", "data": { "current_page": 1, "data": [ { "id": 1, "type": 1,//反馈类型:1 购买,2 功能, 3 其他 "title": "你好,网站不错哦", "content": "你好,网站不错哦", "status": 2,//状态:1 未回复,2 已回复 "created_at": "2021-08-08 13:32:20", "updated_at": "2021-09-25 16:01:21", "unread_replies_count": 0//未读数(管理员回复) } ], "first_page_url": "http://demo.strongshop.local/api/user/feedback/index?page=1", "from": 1, "last_page": 1, "last_page_url": "http://demo.strongshop.local/api/user/feedback/index?page=1", "next_page_url": null, "path": "http://demo.strongshop.local/api/user/feedback/index", "per_page": 15, "prev_page_url": null, "to": 1, "total": 1 } } ``` #### 返回CODE说明: |参数名|说明| |:----- |----- | |200 |成功 | |3001 |字段验证错误 | |5001|服务内部错误| #### 备注: - 更多返回错误代码请看首页的错误代码描述