获取分机列表信息
<h4>接口说明:</h4>
<h5>获取用户拥有的分机列表信息。</h5>
<h4>请求方式:POST,form-data格式</h4>
<h4>请求参数</h4>
<table>
<thead>
<tr>
<th>参数名</th>
<th>类型</th>
<th>是否必须</th>
<th>说明</th>
</tr>
</thead>
<tbody>
<tr>
<td>service</td>
<td>string</td>
<td>是</td>
<td>App.Sip_Sipnum.GetSipnumberInfo</td>
</tr>
<tr>
<td>token</td>
<td>string</td>
<td>是</td>
<td>通过授权接口获取的token</td>
</tr>
<tr>
<td>status</td>
<td>int</td>
<td>是</td>
<td>分机状态。1:启用(默认)、2:禁用、3:全部</td>
</tr>
<tr>
<td>extnumber</td>
<td>string</td>
<td>否</td>
<td>分机号,为空获取所有</td>
</tr>
</tbody>
</table>
<h4>接口请求示例(PHP)</h4>
<pre><code>&lt;?php
    $apiUrl = 'http://127.0.0.1:8080';
    $postFields = [
        'service'   =&gt; 'App.Sip_Sipnum.GetSipnumberInfo',
        'token'     =&gt; 'ABCDEFG',
        'status'    =&gt; 3,
        'extnumber'  =&gt; '100001'
    ];
    $curl = curl_init();
    curl_setopt($curl, CURLOPT_URL, $apiUrl);
    curl_setopt($curl, CURLOPT_POST, 1);
    curl_setopt($curl, CURLOPT_POSTFIELDS, $postFields);
    curl_setopt($curl, CURLOPT_RETURNTRANSFER, 1);
    $response = curl_exec($curl);
    $curlError = curl_error($curl);
    curl_close($curl);
    var_dump($response);
?&gt;</code></pre>
<h4>返回数据结构示例</h4>
<pre><code>{
    &quot;ret&quot;: 200,
    &quot;data&quot;: {
        &quot;status&quot;: 0,
        &quot;desc&quot;: &quot;获取成功&quot;,
        &quot;result&quot;: [
            {
                &quot;extnumber&quot;: &quot;100001&quot;,
                &quot;password&quot;: &quot;100001&quot;,
                &quot;status&quot;: 1016,
                &quot;register&quot;: &quot;nreg&quot;
            }
        ],
        &quot;reqtime&quot;: 1581506241,
        &quot;rsptime&quot;: 1581506241
    },
    &quot;msg&quot;: &quot;&quot;
}</code></pre>
<h4>返回参数说明</h4>
<table>
<thead>
<tr>
<th>参数名</th>
<th>类型</th>
<th>说明</th>
</tr>
</thead>
<tbody>
<tr>
<td>result</td>
<td>array</td>
<td>分机列表数组</td>
</tr>
<tr>
<td>—extnumber</td>
<td>string</td>
<td>分机号</td>
</tr>
<tr>
<td>—password</td>
<td>string</td>
<td>分机号登陆密码</td>
</tr>
<tr>
<td>—status</td>
<td>int</td>
<td>分机号状态</td>
</tr>
<tr>
<td>—register</td>
<td>string</td>
<td>分机号注册状态。nreg:未注册;reg:已注册</td>
</tr>
</tbody>
</table>