# 获取服务用户有效期列表
# 接口调用请求说明
http请求方式:POST
https://api.weixin.qq.com/wxa/servicemarket/service/get_service_buyer_list?access_token=xxxxxxxxx
对于小商店增值服务,access_token为第三方平台component_access_token 对于其他业务,access_token为服务平台的企业主页的access_token
# 请求参数示例
{
"service_id": 10000000005,
"offset":0,
"limit":10,
"buyer_type":1
}
# 回包示例
{
"errcode": 0,
"errmsg":"ok",
"buyer_list":
[
{
"appid": "wxb24cc230ace685a3",
"service_id": 10000000005,
"spec_list": [
{
"expire_time": 1619010767,
"specification_id": "free"
},
{
"expire_time": 1637987028,
"specification_id": "pro"
}
]
},
{
"appid": "wxd30af6a6a77d8a32",
"service_id": 10000000005,
"spec_list": [
{
"expire_time": 1619010768,
"specification_id": "free"
},
{
"expire_time": 1637987029,
"specification_id": "pro"
}
]
}
]
}
# 请求参数说明
参数 | 类型 | 是否必填 | 说明 |
---|---|---|---|
service_id | number | 是 | 服务id,64位无符号整数 |
offset | number | 是 | 偏移量 |
limit | number | 是 | 最大为10 |
buyer_type | number | 否 | 买家类型,1是小程序,2是微信用户,默认为1 |
# 回包参数说明
参数 | 类型 | 说明 |
---|---|---|
errcode | number | 错误码 |
errmsg | string | 错误信息 |
buyer_list | ServiceBuyerInfo List |
ServiceBuyerInfo
参数 | 类型 | 说明 |
---|---|---|
appid | string | 小程序appid,buyer_type = 1时返回 |
service_id | number | 服务id,64位无符号整数 |
spec_list | ServiceBuyerInfoItem List | |
openid | string | 用户在服务平台的openid,buyer_type = 2时返回 |
ServiceBuyerInfoItem
参数 | 类型 | 说明 |
---|---|---|
specification_id | string | 规格ID |
expire_time | number | 过期时间 |