client->makeRequest( "/store/setting/$code", "GET" ); } /** * Upload store prices * * @param array $prices prices data * @param string $site default: null) * * @throws \InvalidArgumentException * @throws \RetailCrm\Exception\CurlException * @throws \RetailCrm\Exception\InvalidJsonException * * @return \RetailCrm\Response\ApiResponse */ public function storePricesUpload(array $prices, $site = null) { if (!count($prices)) { throw new \InvalidArgumentException( 'Parameter `prices` must contains array of the prices' ); } /* @noinspection PhpUndefinedMethodInspection */ return $this->client->makeRequest( '/store/prices/upload', "POST", $this->fillSite($site, ['prices' => json_encode($prices)]) ); } /** * Get products * * @param array $filter (default: array()) * @param int $page (default: null) * @param int $limit (default: null) * * @throws \InvalidArgumentException * @throws \RetailCrm\Exception\CurlException * @throws \RetailCrm\Exception\InvalidJsonException * * @return \RetailCrm\Response\ApiResponse */ public function storeProducts(array $filter = [], $page = null, $limit = null) { $parameters = []; if (count($filter)) { $parameters['filter'] = $filter; } if (null !== $page) { $parameters['page'] = (int) $page; } if (null !== $limit) { $parameters['limit'] = (int) $limit; } /* @noinspection PhpUndefinedMethodInspection */ return $this->client->makeRequest( '/store/products', "GET", $parameters ); } }