Example #1
0
 /**
  * Get list of images, for given offset, limit and (?) sorting direction.
  * Available keys and default values:
  *   limit  => 10 (can't be greater than 50)
  *   offset => 0
  *
  * @param array $params
  *
  * @param array $params
  * @return array
  * @throws SoapApiException
  */
 public function imageList(array $params = array())
 {
     $result = new SoapRequestResult($this->soapClient->imageList($params));
     $this->checkRequestResultSuccess($result);
     return $result->getData();
 }