store.user.list.get 批量获取会用用户公开信息接口 (同步)

详细描述

批量获取会员用户公开信息接口(初始化,增量接口)

支持平台: ECstore

API用户类型授权

需授权

系统级别输入参数

名称 类型 是否必须 描述
method String

API接口名称

certi_id Number

分配给应用的证书ID

from_node_id String

API调用的来源节点ID,对于第三方开发者来说,此id即为申请应用颁发的APP KEY

from_api_v String

请求方版本号

to_node_id String

API调用的目的节点ID(除了基础服务类api,其他接口必传此参数)

to_api_v String

接收方版本号

callback_url String

响应回调地址,带http路径的标准URL。(调用异步接口此参数必填)

v String

矩阵API协议版本,可选值:1.0

timestamp String

时间戳,格式为yyyy-MM-dd hh:mm:ss,例如:2008-01-25 20:23:30。ShopEx API服务端允许客户端请求时间误差为10分钟

format String

可选,指定响应格式。默认JSON ,目前支持格式为JSON

sign String

对调用API时所有输入参数(包括应用级参数)进行签名结果

应用级输入参数

名称 类型
默认全部
示例值 默认值 描述
start_time Date

ECstore(可选)

2010-11-11 16:50:55

需获取数据的开始时间 格式:yyyy-MM-dd HH:mm:ss (如果start_time不填写为传送截至到end_time之前的用户数据)

end_time Date

ECstore(必填)

2010-11-11 16:50:55

需获取数据的结束时间 格式:yyyy-MM-dd HH:mm:ss

page_no Number

ECstore(可选)

1

1

页码,值为正整数,默认值为1

page_size String

ECstore(可选)

40

40

每页条数,值为正整数,最大值为40

返回结果

名称 类型 是否必须 示例值 描述
user User

返回数据USER结构(每次最多返回40个用户数据)

total_results Number

100

数据总条数

next_page String

true

是否有下一页true:有;false:没有

XML数据格式:

			
JSON数据格式:
{
  "rsp":"succ",
  "msg_id":"3463421b2581604c74dcb9b74ffab2e4",
  "data":{
      "user":[{
            "user_id": 10001,
            "uid": "10001",
            "nick_name": "test118",
            "sex": "m",
            "buyer_credit": {
                "level": 1,
                "score": 1,
                "total_num": 1,
                "good_num": 1
              },
            "seller_credit": {
                "level": 1,
                "score": 1,
                "total_num": 1,
                "good_num": 1
              },
            "location": {
                "zip": "210000",
                "address": "桂林路396号浦原大厦",
                "city": "上海",
                "state": "上海",
                "country": "中国",
                "district": "徐汇区"
              },
            "created": "2000-01-01 00:00:00",
            "last_visit": "2000-01-01 00:00:00",
            "birthday": "2000-01-01 00:00:00",
            "type": "B",
            "auto_repost": "unlimited",
            "promoted_type": "authentication",
            "status": "normal",
            "alipay_bind": "bind",
            "consumer_protection": true,
            "alipay_account": "test118@163.com",
            "alipay_no": "10001"
      }]
      "next_page":"true",
      "total_results":100
  }
}

错误码

错误码 错误描述 解决方案

FAQ

修改时间:2012-08-28 19:10:30