Inbound Action for RITM with corresponding Task
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-05-2023 11:15 PM
Hi All,
Can anyone please help how can I auto populate these fields using the inbound action?
The requested for, contact number and location was set into variable set named requested_for as well as the additional instructions. Pleaseee! Thank you!

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-05-2023 11:28 PM
Hi,
Are you talking about inbound email actions ?
Thanks,
Vikas
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-05-2023 11:29 PM
Yes
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-05-2023 11:31 PM
Hi,
You can refer below link-
Creating Inbound Email Actions | ServiceNow Developers
Thanks and Regards,
Saurabh Gupta

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-05-2023 11:39 PM
Hi @sailor_moon ,
Configure a Inbound emai action and use cart api to populate and submit the request
cart api sample script
var cartId = GlideGuid.generate(null);
var cart = new Cart(cartId);
var item = cart.addItem('sys_id of the catalog item');
cart.setVariable(item,'requested_for',email.user_id); //this would set the requestor for field with sender name
//add other fields as above
var rc = cart.placeOrder(); //submit the catalog item , this gives the sys_id of the Request
Thank you,
Hemanth
Certified Technical Architect (CTA), ServiceNow MVP 2024, 2025