Bitrix24\CRM\Contact::getList PHP Method

getList() public method

Get list of contact items.
public getList ( array $order = [], array $filter = [], array $select = [], integer $start ) : array
$order array - order of task items
$filter array - filter array
$select array - array of collumns to select
$start integer - entity number to start from (usually returned in 'next' field of previous 'crm.contact.list' API call)
return array
    public function getList($order = array(), $filter = array(), $select = array(), $start = 0)
    {
        $fullResult = $this->client->call('crm.contact.list', array('order' => $order, 'filter' => $filter, 'select' => $select, 'start' => $start));
        return $fullResult;
    }