public function InternalNote()
 {
     $data = ['ticketid' => '23', 'userid' => 1, 'body' => 'Testing the api internal note', 'api-key' => 'clYbe1g7BYVEJznBdvCEBR0xDCLDqKgg'];
     $data = http_build_query($data, '', '&');
     $url = $this->server . "helpdesk/internal-note?token=" . \Config::get('app.token');
     $_this = new self();
     $respose = $_this->CallPostApi($url, $data);
     return $respose;
 }