Example #1
0
 /**
  * Get information about an image
  *
  * @param string $id
  * @return array
  * @throws SoapApiException
  */
 public function imageGet($id)
 {
     $result = new SoapRequestResult($this->soapClient->imageGet($id));
     $this->checkRequestResultSuccess($result);
     return $result->getData();
 }