| 名称 | 类型 | 描述 |
|---|---|---|
| list | struct[] | 返回信息列表 |
| poi_id | string | poi id |
| local_store_name | string | 门店名称 |
| local_store_province | string | 门店省 |
| local_store_city | string | 门店城市 |
| local_store_address | string | 门店地址 |
| local_store_biz_info | struct | 门店经营信息 |
| poi_id | string | poi id |
| customer_profile | struct | 门店经营信息用户画像 |
| gender | enum | 门店经营信息用户画像性别,[枚举详情] |
| age | struct[] | 年龄(范围为 14 |
| min | integer | 年龄最小值限制,(其中 15、16、17 不可以使用) |
| max | integer | 年龄最大值限制 |
| income | struct[] | 门店经营信息用户画像收入 |
| min | integer | 收入最小值限制 |
| max | integer | 收入最大值限制 |
| vehicle | enum[] | 门店经营信息用户画像出行方式,[枚举详情] |
| customer_per_cost | integer | 客单价 |
| first_category_id | integer | 一级类目 id,对应门店类目的 vertical_id |
| second_category_id | integer | 二级类目 id |
| third_category_id | integer | 三级类目 id |
| fourth_category_id | integer | 三级类目 id |
| first_category_name | string | 一级类目 |
| second_category_name | string | 二级类目 |
| third_category_name | string | 三级类目 |
| fourth_category_name | string | 四级类目 |
| peak_period | struct[] | 门店高峰时间段 |
| time_series | string | 门店经营信息客流高峰时间段 |
| date | enum | 门店经营信息客流高峰日期,[枚举详情] |
| opening_hours | struct[] | 门店营业时间 |
| time_series | string | 门店经营信息营业时间段 |
| date | enum | 门店经营信息营业时间日期,[枚举详情] |
| telephone | string | 联系电话,小于 300 个英文字符 |
| special_service | enum[] | 特色服务,[枚举详情] |
| opening_status | enum | 门店经营状态,[枚举详情] |
| intro | string | 门店介绍 |
| hide_poi | boolean | 是否在广告上隐藏门店信息 |
| wechat_ecosystem_accounts | struct | 门店微信生态账户 |
| wxpay_merchant_id | string[] | 微信支付商户号,可从查询微信支付商户号接口获取,最多可输入 10 个微信支付商户号 |
| wechat_official_account_id | string | 公众号 id |
| wechat_mini_program_id | string | 微信小程序 id |
| wechat_channels_id | string | 视频号 id |
| page_info | struct | 分页配置信息 |
| page | integer | 搜索页码 |
| page_size | integer | 一页显示的数据条数 |
| total_number | integer | 总条数 |
| total_page | integer | 总页数 |
curl --location --request GET '/v1.3/local_stores_search_info/get' \
--header 'access_token: <ACCESS_TOKEN>' \
--header 'timestamp: <TIMESTAMP>' \
--header 'nonce: <NONCE>' \
--header 'fields;' \
--data-urlencode 'account_id=<ACCOUNT_ID>' \
--data-urlencode 'page=1' \
--data-urlencode 'page_size=10' \
--data-urlencode 'key_word='{
"code": 0,
"message": "",
"message_cn": "",
"data": {
"list": [
{
"local_store_biz_info": {
"customer_profile": {
"age": [],
"income": [],
"vehicle": []
},
"peak_period": [],
"opening_hours": [],
"special_service": []
},
"wechat_ecosystem_accounts": {
"wxpay_merchant_id": []
}
}
],
"page_info": {
"page": 1,
"page_size": 10,
"total_number": 1,
"total_page": 1
}
}
}