文档
测试

查看店铺审核记录

GET
/api/backstage_store_verified_record

接口描述

查询单条的时候,可以不加limit和page

请求参数

参数名
类型
描述
必填
filters
object
参数字典
必填
store_id
number
店铺id
可选
limit
number
每页个数
可选
page
number
页数
可选

响应参数

参数名
类型
描述
必填
ret
number
示例:0
必填
msg
object
数据字典
必填
count
number
示例:1
必填
data
array
数据列表
必填
_id
string
示例:5e46476ddc4c00004e0045f2
必填
store_id
number
示例:102
必填
name
string
示例:东成旗舰店
必填
auditor
string
审核员 示例:王亿民
必填
verified_time
number
审核时间 示例:1581663845
必填
pre_data
object
更改前内容 数据字典
必填
name
string
示例:西成旗舰店
必填
modification
object
更改后内容 数据字典
必填
name
string
示例:东成旗舰店
必填
verified_status
string
审核状态码 示例:1
必填
refuse_reason
string
审核未通过理由
可选
refuse_detail
string
审核未通过详情
可选

说明 / 示例

返回数据格式: ```json { "ret": 0, "msg": { "count": 1 }, "data": [ { "_id": "5e46476ddc4c00004e0045f2", "store_id": 102, "name": "东成旗舰店", "auditor": "王亿民", "verified_time": 1581663845, "pre_data": { "name": "西成旗舰店" }, "modification": { "name": "东成旗舰店" }, "verified_status": "1" } ] } ```