/**
  * Read One
  * @param String $id
  * @returns Portal
  */
 public function getPortal($id)
 {
     $clientResponse = $this->webClient->get(MediaSiloResourcePaths::PORTAL . "/" . $id);
     return Portal::fromJson($clientResponse->getBody());
 }