| 名称 | 描述 |
|---|---|
| HTTP URL | http://wspacebot.yunfeiwork.com/wspace-openapi/partner/tuangou/pageQueryPoiList?access_token=ACCESS_TOKEN |
| HTTP Method | POST |
| 参数名 | 参数值 | 是否必填 |
|---|---|---|
| content-type | application/json | 是 |
| 参数名 | 类型 | 是否必填 | 说明 |
|---|---|---|---|
| page | int | 是 | 页码,默认1 |
| limit | int | 是 | 每页条数,默认10 |
| opPoiId | string | 否 | 云飞API侧的门店ID,不传查当前应用绑定的所有门店 |
{
"page": 1,
"limit": 10,
"opPoiId": null
}| 参数名 | 类型 | 说明 |
|---|---|---|
| opPoiId | string | 云飞API侧的门店ID |
| name | string | 门店名称 |
| address | string | 地址 |
| cityName | string | 城市 |
| expiresIn | long | 门店授权过期时间(单位:秒) |
| expiresTime | datetime | 门店授权过期时间(格式:yyyy-MM-dd HH:mm:ss) |
| authorizePlatforms | arrays | 当前门店已完成授权的平台 |
| 属性 | 类型 | 说明 |
|---|---|---|
| platform | string | 已授权平台,meituan=美团(美团、大众点评共用),douyin=抖音(即抖音来客) |
| status | int | 授权状态 0=未授权 1=已授权 2=授权失败 3=授权已过期 |
| expiresIn | long | 门店授权过期时间(单位:秒), 抖音授权自动续期不返回 |
| expiresTime | datetime | 门店授权过期时间(格式:yyyy-MM-dd HH:mm:ss) 抖音授权自动续期不返回 |
{
"code": 200,
"msg": "成功",
"data": [
{
"opPoiId": "example",
"name": "example",
"address": "example",
"cityName": "example",
"expiresIn": 2590896,
"expiresTime": "2025-04-16 12:32:43",
"authorizePlatforms": [
{
"platform": "meituan",
"status": 1,
"expiresIn": 2161135,
"expiresTime": "2025-07-26 16:42:58"
},
{
"platform": "douyin",
"status": 1
}
]
}
]
}