I wanted to create a incident in ServiceNow when customer makes a call to ServiceNow
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎04-23-2024 11:49 PM
I know from ServiceNow customer can call to the caller or assignee using Twilio integration. But, I want when customer calls to ServiceNow Incident should get create. Any solution for this would be appreciated
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎04-24-2024 12:07 AM
Hi @Ruthika D
Refer to below link.
https://www.twilio.com/en-us/blog/update-your-servicenow-incidents-in-real-time-with-twilio
Thanks
dgarad

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎04-24-2024 12:14 AM
Hi @Ruthika D ,
In this case you can create a onBefore Business Rule you can give the filter condition and add this below code
var gr = new GlideRecord('incident');
gr.initialize();
gr.description = 'TEst Sarthak here';
//you can add as many fields here
gr.insert();
Please mark my answer correct and helpful if this works for you
Thanks and Regards
Sarthak