====== 咨询/回复接口 ====== ------ ===== 1、咨询列表 ===== === 接口名称 === feedbacks/list === 请求方式 === get === 请求参数 === ^ 参数名称 ^ 参数类型 ^ 是否必填 ^ 说明 ^ | buyerId| int | 是 | 买家id | |pageSize|int|否|每页数量 默认为50| === 返回值 === ^ 名称 ^ 类型 ^ 说明 ^ | items| data| 数据 | | _links| data| 分页信息 | | _meta| data| 查询数据信息 | === items数据说明 === ^ 名称 ^ 类型 ^ 说明 ^ | id| int| 退款ID| | buyer_id| int| 买家ID | | seller_id| int|卖家id | | addtime| string| 添加时间| | replytime| string| 回复时间| | cnt| string| 评论内容 | | reply| string| 回复内容 | ===== 2、添加咨询 ===== === 接口名称 === feedbacks/create === 请求方式 === post === 请求参数 === ^ 参数名称 ^ 参数类型 ^ 是否必填 ^ 说明 ^ | buyerId| int| 是 |买家ID | | sellerId| int|是 |卖家id | | cnt| string| 是 |咨询内容 | === 返回值 === ^ 名称 ^ 类型 ^ 说明 ^ | result | bool | 返回结果 success 成功 error 失败 | | message| string | 返回信息 | ===== 3、回复咨询 ===== === 接口名称 === feedbacks/reply === 请求方式 === post === 请求参数 === ^ 参数名称 ^ 参数类型 ^ 是否必填 ^ 说明 ^ | feedbackId| int| 是 |咨询ID | | sellerId| int|是 |卖家id | | reply| string| 是 |回复内容 | === 返回值 === ^ 名称 ^ 类型 ^ 说明 ^ | result | bool | 返回结果 success 成功 error 失败 | | message| string | 返回信息 |