- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎08-04-2016 10:32 AM
I am working with the inbound email actions and part of the script shows the sys_id for an assignment group. I want to change that assignment group and need to know how to find the sys_id for the group I want to use. How do I list out the sys_id's of all my assignment groups?
if (sentTo.toLowerCase().indexOf('mail@mymail.com') >= 0) {
current.u_assignment_group = '582bfe9a37c15600372fa6d2b3990e1d'; //group1
}
}
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎08-04-2016 10:35 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎08-04-2016 10:40 AM
Mike I wasnt aware I could do that!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎12-02-2020 07:05 AM
Hi Mike,
I am afraid, but this kind of assignment doesn't work.
Regards,
Swarnadeep Nandy
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎06-13-2019 07:59 AM
I know this is old, but is there a way that you can pass a list names.
assignment_group.name = 'Service Desk', 'sc_fpcms_trade_operations', 'xxxxxx xzcc';
In the Rest API explorer I try: assignment_group.name=sc_fpcms_trade_operations,fsc_fpcms_fund_of_funds.
But it returns nothing.
If I try a single group: assignment_group.name=sc_fpcms_trade_operations
returns data.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎06-17-2019 02:52 PM
You would want:
assignment_group.name=sc_fpcms_trade_operations^ORassignment_group.name=fsc_fpcms_fund_of_funds
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎06-17-2019 02:52 PM
Or, assignment_group.nameINsc_fpcms_trade_operations,fsc_fpcms_fund_of_funds
