文档
测试

会员分页查询

POST
https://thirdparty-stage.yanglaoban.com/thirdparty/api/member/listmember

接口描述

分页查询会员

请求参数

application/json
参数名
类型
描述
必填
size
int
每页大小
必填
page
int
第几页
必填
mobile
string
手机号
可选

响应参数

application/json
参数名
类型
描述
必填
code
int
示例:0
必填
message
string
示例:
必填
data
object
数据字典
必填
rows
array
数据列表
必填
id
string
必填
memberid
string
会员编号
必填
mobile
string
手机号
必填
tenantid
string
商户号
必填
shopid
string
门店号
必填
platform
string
平台
必填
status
int
会员状态,0正常,1锁定,2注销
必填
createdat
int
创建时间
必填
gender
int
性别 0男,1女
必填
birthday
int
生日
必填
tagids
array
标签id列表
必填
totalcredit
int
总积分
必填
scancode
boolean
是否下过扫码购单
必填
pos
boolean
是否下过POS单
必填
delivery
boolean
是否下过配送单
必填
selfpick
boolean
是否下过自提单
必填
totalpaid
int
累计消费
必填
purchasecount
string
累计交易次数
必填
outermembertype
int
会员类型 1:付费会员,0:普通会员
必填
expirydate
date
付费会员过期时间
必填
forever
boolean
是否是永久付费会员
必填
total
string
总数
必填
page
int
当前是第几页
必填
size
int
每页大小
必填
traceid
string
示例:19a5a2acf7a7ac46
必填
now
int
示例:1636437455837
必填

说明 / 示例

```json {"size":10,"page":1} ``` 响应参数示例 ```json { "code": 0, "message": "", "data": { "rows": [{ "id": "161630635377300072", "memberid": "821633635177219914", "mobile": "15216766604", "tenantid": "0210000602", "shopid": "100000", "platform": "pos", "status": 0, "createdat": 1636357730000, "gender": 0, "birthday": 1636214400000, "tagids": [], "totalcredit": 0.0, "scancode": false, "pos": false, "delivery": false, "selfpick": false, "totalpaid": 0.0, "purchasecount": "0", "outermembertype": 1, "expirydate": "2022-02-09 11:07:38" }], "total": "13", "page": 1, "size": 10 }, "traceid": "19a5a2acf7a7ac46", "now": 1636437455837 } ```