1
0
mirror of synced 2024-11-22 05:16:07 +03:00

orders method

This commit is contained in:
tikijian 2014-09-18 16:19:36 +04:00
parent 225937f12e
commit 88864dcafe

View File

@ -143,6 +143,25 @@ class RestApi
return $result;
}
/**
* Фильтр по заказам
*
* @param Array $filter - массив полей для фильтрации
* @param int $limit - ограничение на размер выборки
* @param int $offset - сдвиг
* @return array - массив заказов
*/
public function orders($filter = array(), $limit = 50, $offset = 0)
{
$url = $this->apiUrl.'orders';
$this->parameters['limit'] = $limit;
$this->parameters['offset'] = $offset;
$this->parameters = array_merge($this->parameters, $filter);
$result = $this->curlRequest($url);
return $result;
}
/* Методы для работы с клиентами */
/**