SGC-Intune Software Import is failing - microsoft deprecated APIDescriptionMicrosoft has deprecated an API that we use to retrieve software details when given App Ids.Here's the complete scenario:Currently, we have two paths to optimize the process of obtaining software data from Intune:1. By providing Device Ids, we can retrieve the associated Apps and map them.2. By providing App Ids, we can retrieve the associated devices and map them.However, the API we use for the second path has been deprecated by Microsoft. Therefore, we need to temporarily modify the code to prioritize the first path. It's important to note that both paths achieve the same functionality; they are simply there for optimization purposes.To address this, we can make a change in the instance in the "IntuneIntegrationUtil" script include at line 454.we should add "|| true" in the if block to ensure the code follows the first path.I have also attached a screenshot of the modified code for your reference. (IntuneIntegrationUtil.png)Steps to Reproduce -> Go to SG-Intune Software data source-> Load all records-> if code chooses 2nd path, import will failWorkaroundHowever, the API we use for the second path has been deprecated by Microsoft. Therefore, we need to temporarily modify the code to prioritize the first path. It's important to note that both paths achieve the same functionality; they are simply there for optimization purposes.To address this, we can make a change in the instance in the "IntuneIntegrationUtil" script include at line 454.we should add "|| true" in the if block to ensure the code follows the first path.I have also attached a screenshot of the modified code for your reference. (IntuneIntegrationUtil.png)Related Problem: PRB1679439