获取商户信息
<h5>接口描述</h5>
<ul>
<li>接口方向:接入方 → 本平台</li>
<li>限速控制:60秒内不能超过60次</li>
<li>用于查询商户信息</li>
</ul>
<h4>请求URL</h4>
<ul>
<li>[<a href="http://juling.funshion.com/ps/open/user/info">http://juling.funshion.com/ps/open/user/info</a>] </li>
<li>接口域名固定,不支持其他域名</li>
</ul>
<h4>请求方式</h4>
<ul>
<li>POST/GET</li>
<li>Content-Type: application/json;charset=utf-8</li>
</ul>
<h4>请求参数</h4>
<table>
<thead>
<tr>
<th>参数名</th>
<th>必填</th>
<th>示例</th>
<th>说明</th>
</tr>
</thead>
<tbody>
<tr>
<td>userid</td>
<td>是</td>
<td>10001</td>
<td>商户ID联系站长获取</td>
</tr>
<tr>
<td>timestamp</td>
<td>是</td>
<td>1689544765</td>
<td>现行10位时间戳,有效期300秒</td>
</tr>
<tr>
<td>sign</td>
<td>是</td>
<td>ffjutjghfdgedf5eggdgdgghr</td>
<td>签名,<a href="https://www.showdoc.com.cn/juling001/11558619435396525">点我查看签名计算规则</a></td>
</tr>
</tbody>
</table>
<h4>请求示例</h4>
<pre><code>{
&quot;userid&quot;: &quot;10052&quot;,
&quot;timestamp&quot;: 1735002156,
&quot;sign&quot;: &quot;82a4da7502872e7a128b510d10cad6ab&quot;
}</code></pre>
<h4>响应信息</h4>
<pre><code>{
&quot;code&quot;: 1,
&quot;msg&quot;: &quot;查询成功&quot;,
&quot;data&quot;: {
&quot;money&quot;: &quot;-2257.2900&quot;,
&quot;creditquota&quot;: &quot;10000.00&quot;
}
}</code></pre>
<h4>响应参数</h4>
<table>
<thead>
<tr>
<th>参数名</th>
<th>示例</th>
<th>说明</th>
</tr>
</thead>
<tbody>
<tr>
<td>code</td>
<td>1</td>
<td><a href="https://www.showdoc.com.cn/2592446100589081/11529649354692263">详见全局结果代码说明</a></td>
</tr>
<tr>
<td>msg</td>
<td>签名错误</td>
<td>提示信息</td>
</tr>
<tr>
<td>data.money</td>
<td>-2257.2900</td>
<td>账面余额</td>
</tr>
<tr>
<td>data.creditquota</td>
<td>10000.00</td>
<td>授信额度</td>
</tr>
</tbody>
</table>