OID数据要素登记平台

OID数据要素登记接口服务


2.0.2 地区覆盖范围-市州级覆盖查询服务

<p>[TOC]</p> <h5>接口功能说明</h5> <p>地区覆盖范围-市州级覆盖查询接口</p> <h5>请求URL</h5> <ul> <li><code>https://ip:port/oidConfirm/oid-confirm-register-business/oidConfirmBusinessService</code></li> </ul> <h5>基本信息</h5> <ul> <li>POST</li> <li>Content-Type: application/json</li> </ul> <h5>鉴权认证</h5> <ul> <li>需要 authCode、accessToken 鉴权认证</li> </ul> <h5>authInfo 请求参数说明</h5> <table> <thead> <tr> <th style="text-align: left;">参数名</th> <th style="text-align: left;">必选</th> <th style="text-align: left;">类型</th> <th>说明</th> </tr> </thead> <tbody> <tr> <td style="text-align: left;">apiId</td> <td style="text-align: left;">是</td> <td style="text-align: left;">String</td> <td>服务编号(getAreaNodeList)</td> </tr> <tr> <td style="text-align: left;">appId</td> <td style="text-align: left;">是</td> <td style="text-align: left;">String</td> <td>应用ID</td> </tr> <tr> <td style="text-align: left;">accessToken</td> <td style="text-align: left;">是</td> <td style="text-align: left;">String</td> <td>统一用户中心token</td> </tr> <tr> <td style="text-align: left;">timeStamp</td> <td style="text-align: left;">是</td> <td style="text-align: left;">String</td> <td>当前时间戳</td> </tr> <tr> <td style="text-align: left;">authCode</td> <td style="text-align: left;">是</td> <td style="text-align: left;">String</td> <td>账号鉴权码 (通过<code>1.0.1数据要素登记平台登陆接口</code>获取)</td> </tr> <tr> <td style="text-align: left;">opName</td> <td style="text-align: left;">是</td> <td style="text-align: left;">String</td> <td>当前操作人姓名(通过<code>1.0.1数据要素登记平台登陆接口</code>获取,并进行转码处理:URLEncoder.encode(opName, &quot;UTF-8&quot;);)</td> </tr> </tbody> </table> <h5>请求示例</h5> <pre><code>{ &amp;quot;authInfo&amp;quot;: { &amp;quot;apiId&amp;quot;: &amp;quot;getAreaNodeList&amp;quot;, &amp;quot;appId&amp;quot;: &amp;quot;pzxt1001&amp;quot;, &amp;quot;accessToken&amp;quot;: &amp;quot;eyJzdWIiOiIxYmQ2MWU1NDkxMWRkNDI0Y2YyMmU3ODJmYTQ2NjEwZSxnZW5nY25hYmMsMSIsImlhdCI6MTczNDA1MjQwMCwiZXhwIjoxNzM0NjU3MjAwfQ.1I4_sONJH1h2CA18Od2lDCwKoa7HPDSDxWD1iNjET5sasIKgeK4uokvEWxhH9uEayN9Vi-1FMn0qhxEkeYJvrw&amp;quot;, &amp;quot;authCode&amp;quot;: &amp;quot;1f85c88cecca490cb04eb25aa2d9575a&amp;quot;, &amp;quot;timeStamp&amp;quot;: &amp;quot;1733813592643&amp;quot;, &amp;quot;opName&amp;quot;: &amp;quot;%E8%80%BF%E6%99%93%E5%8D%8E&amp;quot; } }</code></pre> <h5>返回参数说明</h5> <table> <thead> <tr> <th style="text-align: left;">参数名</th> <th style="text-align: left;">类型</th> <th>说明</th> </tr> </thead> <tbody> <tr> <td style="text-align: left;">bizData</td> <td style="text-align: left;">Object</td> <td>返回消息体</td> </tr> <tr> <td style="text-align: left;">resultFlag</td> <td style="text-align: left;">int</td> <td>1:成功;-1:失败</td> </tr> </tbody> </table> <h5>bizData 参数说明</h5> <table> <thead> <tr> <th style="text-align: left;">参数名</th> <th style="text-align: left;">类型</th> <th>说明</th> </tr> </thead> <tbody> <tr> <td style="text-align: left;">children</td> <td style="text-align: left;">Array</td> <td>下属地区信息</td> </tr> <tr> <td style="text-align: left;">parentId</td> <td style="text-align: left;">Long</td> <td>上级地区ID</td> </tr> <tr> <td style="text-align: left;">regionId</td> <td style="text-align: left;">Long</td> <td>地区ID</td> </tr> <tr> <td style="text-align: left;">regionName</td> <td style="text-align: left;">String</td> <td>地区名称</td> </tr> <tr> <td style="text-align: left;">regionType</td> <td style="text-align: left;">String</td> <td>区域类型:省:PROVICE,市:CItY,县(区):COUNTY</td> </tr> </tbody> </table> <h5>返回示例</h5> <pre><code>{ &amp;quot;bizData&amp;quot;: [ { &amp;quot;children&amp;quot;: [], &amp;quot;parentId&amp;quot;: 0, &amp;quot;regionId&amp;quot;: 820000, &amp;quot;regionName&amp;quot;: &amp;quot;澳门特别行政区&amp;quot;, &amp;quot;regionType&amp;quot;: &amp;quot;PROVICE&amp;quot; }, { &amp;quot;children&amp;quot;: [ { &amp;quot;parentId&amp;quot;: 520000, &amp;quot;regionId&amp;quot;: 520400, &amp;quot;regionName&amp;quot;: &amp;quot;安顺市&amp;quot;, &amp;quot;regionType&amp;quot;: &amp;quot;CITY&amp;quot; }, { &amp;quot;parentId&amp;quot;: 520000, &amp;quot;regionId&amp;quot;: 520500, &amp;quot;regionName&amp;quot;: &amp;quot;毕节市&amp;quot;, &amp;quot;regionType&amp;quot;: &amp;quot;CITY&amp;quot; }, { &amp;quot;parentId&amp;quot;: 520000, &amp;quot;regionId&amp;quot;: 520100, &amp;quot;regionName&amp;quot;: &amp;quot;贵阳市&amp;quot;, &amp;quot;regionType&amp;quot;: &amp;quot;CITY&amp;quot; }, { &amp;quot;parentId&amp;quot;: 520000, &amp;quot;regionId&amp;quot;: 520200, &amp;quot;regionName&amp;quot;: &amp;quot;六盘水市&amp;quot;, &amp;quot;regionType&amp;quot;: &amp;quot;CITY&amp;quot; }, { &amp;quot;parentId&amp;quot;: 520000, &amp;quot;regionId&amp;quot;: 522600, &amp;quot;regionName&amp;quot;: &amp;quot;黔东南苗族侗族自治州&amp;quot;, &amp;quot;regionType&amp;quot;: &amp;quot;CITY&amp;quot; }, { &amp;quot;parentId&amp;quot;: 520000, &amp;quot;regionId&amp;quot;: 522700, &amp;quot;regionName&amp;quot;: &amp;quot;黔南布依族苗族自治州&amp;quot;, &amp;quot;regionType&amp;quot;: &amp;quot;CITY&amp;quot; }, { &amp;quot;parentId&amp;quot;: 520000, &amp;quot;regionId&amp;quot;: 522300, &amp;quot;regionName&amp;quot;: &amp;quot;黔西南布依族苗族自治州&amp;quot;, &amp;quot;regionType&amp;quot;: &amp;quot;CITY&amp;quot; }, { &amp;quot;parentId&amp;quot;: 520000, &amp;quot;regionId&amp;quot;: 520600, &amp;quot;regionName&amp;quot;: &amp;quot;铜仁市&amp;quot;, &amp;quot;regionType&amp;quot;: &amp;quot;CITY&amp;quot; }, { &amp;quot;parentId&amp;quot;: 520000, &amp;quot;regionId&amp;quot;: 520300, &amp;quot;regionName&amp;quot;: &amp;quot;遵义市&amp;quot;, &amp;quot;regionType&amp;quot;: &amp;quot;CITY&amp;quot; } ], &amp;quot;parentId&amp;quot;: 0, &amp;quot;regionId&amp;quot;: 520000, &amp;quot;regionName&amp;quot;: &amp;quot;贵州省&amp;quot;, &amp;quot;regionType&amp;quot;: &amp;quot;PROVICE&amp;quot; }, ], &amp;quot;bizDataType&amp;quot;: 0, &amp;quot;fail&amp;quot;: false, &amp;quot;ok&amp;quot;: true, &amp;quot;resultFlag&amp;quot;: 1, &amp;quot;resultMsg&amp;quot;: &amp;quot;ok&amp;quot; }</code></pre>

页面列表

ITEM_HTML