9.1设置回调地址
<p><strong>简要描述:</strong> </p>
<ul>
<li>设置回调地址</li>
</ul>
<p><strong>请求URL:</strong> </p>
<ul>
<li><code>/api/setCallback</code></li>
</ul>
<p><strong>请求方式:</strong></p>
<ul>
<li>POST </li>
</ul>
<p><strong>参数:</strong> </p>
<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;">open_callback</td>
<td style="text-align: left;">是</td>
<td style="text-align: left;">int</td>
<td>是否开启实时推送 1表示开启 0表示关闭</td>
</tr>
<tr>
<td style="text-align: left;">callback_url</td>
<td style="text-align: left;">是</td>
<td style="text-align: left;">string</td>
<td>回调地址,以http:// 或者 https:// 开头</td>
</tr>
<tr>
<td style="text-align: left;">task_callback_url</td>
<td style="text-align: left;">否</td>
<td style="text-align: left;">string</td>
<td>异步导入任务回调地址,以http:// 或者 <a href="https://开头">https://开头</a></td>
</tr>
</tbody>
</table>
<p><strong>请求示例</strong></p>
<pre><code> {
&quot;user_sn&quot;:&quot;SYSUSER|cb31d43bc89487492bb0e0dd720705e0&quot;,
&quot;api_key&quot;:&quot;MUOm4NH1&quot;,
&quot;open_callback&quot;:&quot;1&quot;,
&quot;callback_url&quot;:&quot;http:\/\/xxx\/api\/crm&quot;
}</code></pre>
<p><strong>返回示例</strong></p>
<pre><code> {
&quot;code&quot;:0,
&quot;msg&quot;:&quot;SUCCESS&quot;
}</code></pre>
<p><strong>备注</strong> </p>
<ul>
<li>
<p>需要把公共参数也传过来。get方式接口url是拼装json数据进行加密,加密示例:(注意:要对反斜杆进行专义,json示例的参数顺序必须跟get参数的顺序一致,否则返回100001)</p>
</li>
<li>更多返回错误代码请看首页的错误代码描述</li>
</ul>