customers Find method
This commit is contained in:
parent
1e61f51ae6
commit
66139a5e8e
@ -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;
|
||||
}
|
||||
|
||||
/**
|
||||
* Создание клиента
|
||||
*
|
||||
|
Loading…
Reference in New Issue
Block a user