Get jobs: /rest/v1/:userId/jobs (GET)
boolean $full:
array
public function getJobs($full = null) { $query = http_build_query(array( 'full' => isset($full) && $full ? 'true' : null, )); return $this->execute('GET', $this->userId . '/jobs' . (strlen($query) ? '?' . $query : '')); }