20.会员查询(gy.erp.vip.get)

马浩栋发表于:2019年01月28日 17:32:22更新于:2019年01月30日 09:35:51

1.1    业务简述

1.2    请求参数

字段名

类型

描述

必填

备注

page_no

int

页码

默认为1

page_size

int

每页大小

默认为10

start_created

datetime

创建时间开始段


end_created

datetime

创建时间结束段


source

string

会员来源


level_code

string

会员级别代码


shop_code

string

店铺代码


code

string

代码


name

string

名称


mobile

string

手机


Json请求示例:

{
    "appkey": "112194",
    "sessionkey": "754a424bb6874a1fb8a7371f05e83974",
    "method": "gy.erp.vip.get",
    "page_no": "1",
    "page_size": "5",
    "mobile": "18012984415",
    "sign": "A3DA9CBE255A03EC46E0282BC765EF99"
}

1.3    响应参数

字段名

类型

描述

必填

备注

success

boolean

成功与否



errorDesc

string

错误信息



subErrorCode

string




errorDesc

string




subErrorDesc

string




requestMethod

string




vips

vip[]

会员列表



total

int

总记录数



vip:

字段名

类型

描述

必填

备注

created

datetime

创建时间



code

string

代码



name

string

名称



sex

int

性别


0:男

1:女

qq

string

QQ



ww

string

旺旺



email

string

电子邮箱



realName

string

真实姓名



shop_name

string

店铺名称



level

string

会员级别



source

string

会员来源



birthday

datetime

生日



agent

boolean

是否分销商



IdCard

string

身份证号码



receive_infos

receive_info[]

收货明细列表



receive_info:

字段名

类型

描述

必填

备注

receiver

string

收货人



phone

string

手机



address

string

详细地址



area

string

省市区



tel

string

电话



Json返回示例:

{
    "success": true,
    "errorCode": "",
    "subErrorCode": "",
    "errorDesc": "",
    "subErrorDesc": "",
    "requestMethod": "gy.erp.vip.get",
    "vips": [{
        "created": "2018-06-29 14:21:13",
        "code": "5816816886",
        "name": "��一陆有蕾��",
        "sex": 0,
        "qq": null,
        "ww": null,
        "email": null,
        "realName": null,
        "shop_name": "嘉华微信商城",
        "level": null,
        "source": "有赞(口袋通)",
        "birthday": null,
        "agent": false,
        "IdCard": null,
        "receive_infos": [{
            "receiver": "杨小姐",
            "phone": "18012984415",
            "address": "江苏省 南京市 建邺区 月安街56号 汇锦国际·凌江府",
            "area": "江苏省-南京市-建邺区",
            "tel": "18012984415"
        }]
    }],
    "total": 1
}