/**
  * Get client videos. This will be paged.
  *
  * @return type
  */
 public function getVideos()
 {
     $api = '/videos';
     //Set the request URL to clients API.
     $this->request->setURL($this->BASE_URI . $api);
     //Get API results
     $response = $this->HTTP->Get();
     return new Pager($response);
 }