查询行业业务点信息
开发环境
开发环境
POST
/v1.3/business_point/get
应答字段
名称 | 类型 | 描述 |
---|---|---|
business_point_list | struct[] | 业务点列表 |
level | integer | 业务点层级 |
parent_id | string | 业务点行业父 id |
value | string | 业务点行业 id |
desc | string | 业务点行业描述 |
options | string[] | 子业务点信息 |
请求示例请求示例
Shell
JavaScript
Java
Swift
curl --location --request POST '/v1.3/business_point/get' \
--header 'access_token;' \
--header 'timestamp;' \
--header 'nonce;' \
--data-urlencode 'site_sets=[]' \
--data-urlencode 'account_id=<ACCOUNT_ID>'
响应示例响应示例
{
"code": 0,
"message": "",
"message_cn": "",
"data": {
"business_point_list": [
{
"options": []
}
]
}
}
请求参数
Header 参数
access_token
string
必需
默认值:
<ACCESS_TOKEN>
timestamp
string
必需
MarketingAPI 所使用的时间戳,若无特殊说明,均为秒级时间戳
MarketingAPI 所使用的时区为GMT+8,例如当时间戳为1494840119时,表示 2018-05-15 17:21:59
默认值:
<TIMESTAMP>
nonce
string
必需
默认值:
<NONCE>
Body 参数application/x-www-form-urlencoded
site_sets
string
必需
数组最小长度 1,最大长度 2
枚举列表:{ SITE_SET_QBSEARCH, SITE_SET_WECHAT_SEARCH }
示例值:
[]
account_id
integer
必需
示例值:
<ACCOUNT_ID>
返回响应
修改于 2023-11-09 03:06:34