1
0
mirror of synced 2024-11-21 21:06:07 +03:00

customers Find method

This commit is contained in:
Grisha Pomadchin 2014-04-03 13:47:51 +04:00
parent 1e61f51ae6
commit 66139a5e8e

View File

@ -161,6 +161,29 @@ class RestApi
return $result;
}
/**
* Получение списка клиентов в соответсвии с запросом
*
* @param string $phone - телефон
* @param string $email - почтовый адрес
* @param string $fio - фио пользователя
* @param int $limit - ограничение на размер выборки
* @param int $offset - сдвиг
* @return array - массив клиентов
*/
public function customersFind($phone = null, $email = null, $fio = null, $limit = 200, $offset = 0)
{
$url = $this->apiUrl.'customers';
$this->parameters['phone'] = $phone;
$this->parameters['email'] = $email;
$this->parameters['fio'] = $fio;
$this->parameters['limit'] = $limit;
$this->parameters['offset'] = $offset;
$result = $this->curlRequest($url);
return $result;
}
/**
* Создание клиента
*