OID数据要素登记平台

OID数据要素登记接口服务


2.0.1 地区覆盖-跨境覆盖查询服务

<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>服务编号(getCountryList)</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;getCountryList&amp;quot;, &amp;quot;appId&amp;quot;: &amp;quot;test1001&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;">regionId</td> <td style="text-align: left;">String</td> <td>国家或地区的简写代码</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;">shortName</td> <td style="text-align: left;">String</td> <td>国家或地区的英文名称</td> </tr> <tr> <td style="text-align: left;">tel</td> <td style="text-align: left;">String</td> <td>国家或地区的电话号码区号</td> </tr> </tbody> </table> <h5>返回示例</h5> <pre><code>{ &amp;quot;bizData&amp;quot;: [ { &amp;quot;regionId&amp;quot;: &amp;quot;Andorra&amp;quot;, &amp;quot;regionName&amp;quot;: &amp;quot;安道尔共和国&amp;quot;, &amp;quot;shortName&amp;quot;: &amp;quot;AD&amp;quot;, &amp;quot;tel&amp;quot;: &amp;quot;376&amp;quot; }, { &amp;quot;regionId&amp;quot;: &amp;quot;UnitedArabEmirates&amp;quot;, &amp;quot;regionName&amp;quot;: &amp;quot;阿拉伯联合酋长国&amp;quot;, &amp;quot;shortName&amp;quot;: &amp;quot;AE&amp;quot;, &amp;quot;tel&amp;quot;: &amp;quot;971&amp;quot; }, { &amp;quot;regionId&amp;quot;: &amp;quot;Afghanistan&amp;quot;, &amp;quot;regionName&amp;quot;: &amp;quot;阿富汗&amp;quot;, &amp;quot;shortName&amp;quot;: &amp;quot;AF&amp;quot;, &amp;quot;tel&amp;quot;: &amp;quot;93&amp;quot; } ], &amp;quot;bizDataType&amp;quot;: 0, &amp;quot;errorCode&amp;quot;: &amp;quot;&amp;quot;, &amp;quot;fail&amp;quot;: false, &amp;quot;ok&amp;quot;: true, &amp;quot;resultFlag&amp;quot;: 1 }</code></pre>

页面列表

ITEM_HTML