Hello.
Using Magento 2.4 , we will be using FedEx only for our shipping. However, there seems to be big difference between price displayed on Magento and what we get using Fedex shipping manager . After conversation with Fedex support. the extra fee applied to the rate is Insurance Charges. yet there are no configuration within Magento to disable this . for test. I added product 4,765 $ at 15 KG . Magento backend shows shipping cost of 236$ but correct rate would be 36$ . 200$ insurance charges has been applied. How can I rectify this issue ?
solved it. not a good way . but later I can find someone to turn this into module . in
vendor/magento/module-fedex/Model/carrier.php change code to look like this .
'TotalInsuredValue' => ['Amount' => '0.00', 'Currency' => $this->getCurrencyCode()], $ratesRequest['RequestedShipment']['RequestedPackageLineItems'][0]['InsuredValue'] = [ 'Amount' => '0.00', 'Currency' => $this->getCurrencyCode(), ];
No insurance added to the return shipping rate list .