@peopleinside Hi man. Thank for all your support, I figured out, the problem, like another user, was that the API used HTTP instead of HTTPS, I was able to modify RefreshMailboxCommand.php and now enforcing API to communicate using HTTPS, this is the change I made, probably will help other users. The project still in DEV mode because I cannot login as admin when I change to PROD. But for now I'm OK with this.
uvdeskprojectfolder/vendor/uvdesk/mailbox-component/Console/RefreshMailboxCommand.php
Changed this line:
$this->router->getContext()->setScheme((bool) $input->getOption('secure') ? 'https' : 'http');
To this:
$this->router->getContext()->setScheme('https');
Now emails are fetching and added to the respective ticket (I covered some info in case you want to share this solution with other users):