/**
  * Makes GET request, uri can be relative to current context (without endpoint and API path)
  *
  * @param string $uri
  * @param array  $options
  *
  * @return mixed|null
  */
 public function get($uri, $options = array())
 {
     return $this->client->get($uri, $options);
 }