other ways to integrate ServiceNow with InTune if not plugin

Sriram34
Tera Contributor

Team,

 

Can someone tell us the other ways to integrate ServiceNow with InTune.

 

if we are not using Paid plugin.

 

Thanks,

Sriram

3 REPLIES 3

Ashish1116
Tera Contributor

Hello Sriram,

If you're not using the paid ServiceNow InTune plugin, you can still integrate ServiceNow with Microsoft InTune using alternative methods

 

  • InTune provides REST APIs via Microsoft Graph that allow you to fetch device compliance, application inventory, and policy details.
  • You can create scripted REST API calls in ServiceNow to interact with InTune data.

Thanks

 

Viraj Hudlikar
Giga Sage

Hello @Sriram34 

 

1) You can use REST APIs to connect ServiceNow and Intune. This method involves setting up REST messages in ServiceNow to communicate with Intune's API endpoints. This approach allows you to create, read, update, and delete records in ServiceNow based on data from Intune.

 

Check this thread - Integrating Microsoft Intune with ServiceNow witho... - ServiceNow Community

 

2) Writing custom scripts in ServiceNow to handle the integration can be another effective method. You can use JavaScript to make HTTP requests to Intune's API and process the responses within ServiceNow

 

Check this link - Import Intune Assets into ServiceNow without the costly plugins-SysManSquad | Systems Management Squ...

 

See if the plugin is not use then you need to develop everything from scratch think of some usecase you will need some error handling stuff also so be prepared for this unexpected scenario which will appear when development starts, so better always to utilize what is already available and leverage existing feature to ease process.

 

If my response has helped you hit helpful button and if your concern is solved do mark my response as correct.

 

Thanks & Regards
Viraj Hudlikar.

Mohammad Danis3
Tera Expert

Hi @Sriram34 ,

You can achieve this with Rest Message Integration.
Ask the intune team for the endpoing to access the payload. Create a Rest Message with the endpoint and Get HTTP Method and make sure you have proper authencation(Basic, OAuth etc.) in place.

 

Create a scheduled job to run the REST message. 

var bd = new sn_ws.RESTMessageV2('Intune_RestAPI', ' Get devices');

Parse the data and insert in the target/import set table.

If my response has helped you hit helpful button and if your concern is solved do mark my response as correct.

Regards,
Mohammad Danish