Skip to main content

Group Access - Get group information

Get group information

Interface Description:

Create a task group required before creating a predictive outbound task。

Request method: POST, form-data format

request parameters

parameter name type Is it necessary illustrate
service string yes App.Sip_Extgroup.GetExtgroupInfo
token string yes The token obtained through the authorization interface
name string yes group name
status string no Whether to enable: 1 enable 0 disable 2 all

Interface request example(PHP)

<?php
    $apiUrl = 'http://127.0.0.1:8080';
    $postFields = [
        'service'   => 'App.Sip_Extgroup.GetExtgroupInfo',
        'token'     => 'ABCDEFG',
        'name'     => 'queue-1',
    ];
    $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);
?>

return data structure example

{
    "ret": 200,
    "data": {
        "status": 0,
        "desc": "get success",
        "result": [
            {
                "id": 3,
                "name": "test1",
                "status": 1042
            },
            {
                "id": 4,
                "name": "test2",
                "status": 1042
            }
        ],
        "reqtime": 1615537609,
        "rsptime": 1615537609
    },
    "msg": "",
}

Return parameter description

parameter name type illustrate
desc string result description