兄弟公司前端接口

后端接口api返回数据格式


1.6、补充信息申请额度

<h2>1.6 补充信息申请额度</h2> <h3>1.6.1. 补充个人信息</h3> <ul> <li>请求路径:/h5/credit/saveCustInfo</li> <li>请求方法:post</li> <li>请求参数</li> </ul> <p>{     &quot;companyName&quot;: &quot;爱奇艺&quot;, // 公司名称     &quot;companyPhone&quot;: &quot;010-0112145&quot;, // 公司电话     &quot;industry&quot;: &quot;&quot;, // 职业     &quot;education&quot;: &quot;&quot;, // 学历     &quot;email&quot;: &quot;33333eeeee@gmail.com&quot;, // 邮箱     &quot;marriage&quot;: &quot;&quot;, // 婚姻状态 &quot;income&quot;: &quot;&quot;, // 月收入     &quot;name1&quot;: &quot;李四&quot;, // 联系人1姓名     &quot;relationShip1&quot;: &quot;&quot;,  // 联系人1关系     &quot;mobile1&quot;: &quot;15866666666&quot;, // 联系人1手机号     &quot;name2&quot;: &quot;王五&quot;, // 联系人2姓名     &quot;relationShip2&quot;: &quot;&quot;,  // 联系人2关系     &quot;mobile2&quot;: &quot;15866666616&quot; // 联系人2手机号 &quot;zhimafen&quot;: &quot;&quot; // 芝麻分 &quot;vehicleNumber&quot;: &quot;&quot; // 车牌号 &quot;hasCreditcard&quot;: &quot;有|无&quot; // 是否有信用卡 &quot;province&quot;: &quot;130000&quot; // 省编码 &quot;city&quot;: &quot;130100&quot; // 市编码 &quot;district&quot;: &quot;130102&quot; // 区编码 &quot;street&quot;: &quot;详细地址&quot; // 详细地址 }</p> <ul> <li>响应数据</li> </ul> <pre><code class="language-json">{     &amp;quot;meta&amp;quot;: {         &amp;quot;msg&amp;quot;: &amp;quot;保存成功&amp;quot;,         &amp;quot;status&amp;quot;: 200     } }</code></pre> <h3>1.6.2. 获取协议</h3> <ul> <li>请求路径:/h5/protocol/getAuthAgreement</li> <li>请求方法:POST</li> <li>请求参数</li> </ul> <table> <thead> <tr> <th>参数名  </th> <th>参数说明</th> <th>备注    </th> </tr> </thead> <tbody> <tr> <td>sceneId</td> <td>场景编号    </td> <td>注册:register;授信:credit;借款:loan;还款:repayment;绑卡:cardBinding;</td> </tr> <tr> <td>productId</td> <td>产品编号    </td> <td>非必传</td> </tr> </tbody> </table> <ul> <li>响应数据</li> </ul> <pre><code class="language-json">  {     &amp;quot;data&amp;quot;: [         {             &amp;quot;protocolBase4&amp;quot;: &amp;quot;xxxx&amp;quot;,             &amp;quot;protocolName&amp;quot;: &amp;quot;xxxxxxxxxxxxxxxxx&amp;quot;, &amp;quot;protocolCode&amp;quot;:&amp;quot;&amp;quot;         },         {             &amp;quot;protocolBase4&amp;quot;: &amp;quot;xxx&amp;quot;,             &amp;quot;protocolName&amp;quot;: &amp;quot;xxxxxxxxxxxxxxxxx&amp;quot;, &amp;quot;protocolCode&amp;quot;:&amp;quot;xxxx&amp;quot;         },,     ],         &amp;quot;meta&amp;quot;: {         &amp;quot;msg&amp;quot;: &amp;quot;获取列表成功&amp;quot;,         &amp;quot;status&amp;quot;: 200     } }</code></pre> <h3>1.6.3. 签署协议</h3> <ul> <li>请求路径:signAgreement</li> <li>请求方法:post</li> <li>请求参数</li> </ul> <pre><code class="language-json">{     &amp;quot;serialNos&amp;quot;:[&amp;quot;1111111&amp;quot;,&amp;quot;2222222&amp;quot;],     &amp;quot;smsCode&amp;quot;:123 }</code></pre> <ul> <li>响应数据</li> </ul> <pre><code class="language-json">  {     &amp;quot;meta&amp;quot;: {         &amp;quot;msg&amp;quot;: &amp;quot;成功&amp;quot;,         &amp;quot;status&amp;quot;: 200     } }</code></pre> <h3>1.6.4. 申请额度</h3> <ul> <li>请求路径:/h5/credit/apply</li> <li>请求方法:post</li> <li>请求参数 </li> </ul> <table> <thead> <tr> <th>参数名  </th> <th>参数说明</th> <th>备注    </th> </tr> </thead> <tbody> <tr> <td>osType</td> <td>操作系统类型 IOS或ANDRIOD    </td> <td>&#039;&#039;</td> </tr> <tr> <td>osVersion</td> <td>操作系统版本    </td> <td>&#039;&#039;</td> </tr> <tr> <td>deviceId</td> <td>设备ID 安卓取IEMI, 苹果取IDFA    </td> <td>&#039;&#039;</td> </tr> <tr> <td>brand</td> <td>设备品牌 如华为   </td> <td>&#039;&#039;</td> </tr> <tr> <td>model</td> <td>设备型号 如P30   </td> <td>&#039;&#039;</td> </tr> <tr> <td>longitude</td> <td>经度    </td> <td>&#039;&#039;</td> </tr> <tr> <td>latitude</td> <td>纬度   </td> <td>&#039;&#039;</td> </tr> </tbody> </table> <ul> <li> <p>响应参数 无</p> </li> <li>响应数据</li> </ul> <pre><code class="language-json">  {       &amp;quot;meta&amp;quot;: {         &amp;quot;msg&amp;quot;: &amp;quot;成功&amp;quot;,         &amp;quot;status&amp;quot;: 200     },     &amp;quot;data&amp;quot;:{             &amp;quot;creditNo&amp;quot;: &amp;quot;543543543543543534&amp;quot;//授信订单号         }     ], }</code></pre>

页面列表

ITEM_HTML