|
|
## 工商分支机构信息对外接口
|
|
|
----
|
|
|
|
|
|
本接口用于查询工商分支机构信息数据
|
|
|
|
|
|
### 调用路径
|
|
|
> http://api.shuidi.cn/open/company/branch
|
|
|
|
|
|
### 输入参数
|
|
|
|
|
|
|参数名称 | 是否必填 | 说明 |
|
|
|
| -------- | -------- | -------- |
|
|
|
|认证相关参数 | 是| 见接口认证章节说明 |
|
|
|
|key | 是 | 查询公司名称 |
|
|
|
|
|
|
{% include '../common/authenticate.md' %}
|
|
|
|
|
|
### 输出结果
|
|
|
|
|
|
{% include '../common/output_format.md' %}
|
|
|
|
|
|
#### 输出样例
|
|
|
```json
|
|
|
{
|
|
|
"statusCode": 1,
|
|
|
"statusMessage": "请求成功",
|
|
|
"data": [
|
|
|
{
|
|
|
"companyName": "北京奇虎科技有限公司",
|
|
|
"branches": [
|
|
|
{
|
|
|
"companyName": "北京奇虎科技有限公司深圳分公司",
|
|
|
"branchNo": "1",
|
|
|
"branchCode": "",
|
|
|
"authority": ""
|
|
|
},
|
|
|
{
|
|
|
"companyName": "北京奇虎科技有限公司成都分公司",
|
|
|
"branchNo": "2",
|
|
|
"branchCode": "",
|
|
|
"authority": ""
|
|
|
}
|
|
|
]
|
|
|
}
|
|
|
]
|
|
|
}
|
|
|
```
|
|
|
#### 输出结果字段含义
|
|
|
|
|
|
| 属性名 | 含义 |
|
|
|
| -------- | -------- |
|
|
|
|companyName | 公司名称 |
|
|
|
|branches | 分支机构 |
|
|
|
|branchNo | 分支序号 |
|
|
|
|branchCode | 分支注册码 |
|
|
|
|authority | 登记机关 |
|
|
|
|
|
|
{% include '../common/error_code.md'%} |