- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎08-25-2020 11:23 PM
Hi,
I am looking to integrate Contact Center with ServiceNow and open up Agent Workspace.
As part of it, I am opening up a new interaction record and intend to pre-populate some fields on the interaction e.g. Opened For.
Is there a way to pass the information via the URL to Agent Workspace Interaction form or Is there any other way?
Solved! Go to Solution.
- Labels:
-
Agent Workspace

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎08-26-2020 07:23 PM
Hi Akhilesh,
Yes you can pass params through URL to create interaction records in Agent workspace. please see below
syntax would be like this:
/workspace/agent/new_record/interaction/-1/params/query/short_description=test
/interaction/ - defines your table name
/-1/ - tells servicenow that you are creating a new record in the table
/params/query/ - this is the parameter where you will set your values from here
/short_description=test - Define your fieldname equals to the value you want to set
Try the below example in your instance:
https://your-instance.service-now.com/now/workspace/agent/new_record/interaction/-1/params/query/short_description=test
Cheers,
Arsh
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎01-12-2021 01:01 AM
What is the syntax to auto-populate multiple fields?
This populates short description fine:
/workspace/agent/new_record/interaction/-1/params/query/short_description=test
But if I would like to populate the short description and e.g. Opened for with the same url, this doesn't work:
/workspace/agent/new_record/interaction/-1/params/query/short_description=test/opened_for=put_sys_id_of_the_user_here
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎01-13-2021 07:21 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎03-24-2021 12:13 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎10-01-2021 02:03 AM
I have a same question.
What is the syntax to auto-populate multiple fields?

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎01-11-2022 02:30 AM
You just add the additional fields using separator, "^" as in example below:
/workspace/agent/new_record/interaction/-1/params/query/short_description=test^opened_for=put_sys_id_of_the_user_here
https://tcsesbx.service-now.com/now/workspace/agent/new_record/interaction/-1/params/query/short_description=test^opened_for=put_sys_id
Thanks