jar = new \GuzzleHttp\Cookie\CookieJar; // Uncomment if cookies need to be set } public function test() { $test = parent::appTest($this->url('api/contacts')); echo $test->status; } public function livestats() { $status = 'inactive'; $res = parent::execute($this->url('api/contacts'), $this->attrs()); $details = json_decode($res->getBody(), True); $data = []; if($details) { $data['contacts'] = $details['meta']['total'] ?? 0; } return parent::getLiveStats($status, $data); } public function url($endpoint) { $api_url = parent::normaliseurl($this->config->url).$endpoint; return $api_url; } public function attrs() { $apikey = $this->config->apikey; $attrs = [ 'headers' => ['content-type' => 'application/json', 'Authorization' => 'Bearer '.$apikey] ]; return $attrs; } }