KevinTheJedi
Thanks for pointing me in the right direction. I'm still sorting out and testing the safer option.
For testing purposes to identify this as a useful location, I added a line to disable SSL verification. (Disclaimer, this is UNSAFE, do not do this in production)
This Verify parameter also accepts string values to which point to the full path to the CACert.pem bundle file.
https://docs.guzzlephp.org/en/latest/request-options.html#verify
<plugin folder>\lib\GuzzelHttp\Client.php
Approx line 230.
private function configureDefaults(array $config): void
{
$defaults = [
'allow_redirects' => RedirectMiddleware::$defaultSettings,
'http_errors' => true,
'decode_content' => true,
'verify' => false,
'cookies' => false,
'idn_conversion' => false,
];