- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-24-2017 02:09 AM
Hallo,
Is there a way to filter Incident table via REST API by 'assigned_to.value' property of the records:
"assigned_to": {
"link": "https://.......service-now.com/api/now/table/sys_user/:id",
"value": ":id"
} ?
Thanks.
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-24-2017 02:18 AM
Hi Mihaela,
You can run this query from your REST API Explorer
sysparm_query: assigned_to.user_name=admin (This is based on user id of assigned to, If you need a different user attribute then change the field name accordingly)
Thanks
Please Hit like, Helpful or Correct depending on the impact of the response
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-24-2017 02:18 AM
Hi Mihaela,
You can run this query from your REST API Explorer
sysparm_query: assigned_to.user_name=admin (This is based on user id of assigned to, If you need a different user attribute then change the field name accordingly)
Thanks
Please Hit like, Helpful or Correct depending on the impact of the response
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-24-2017 05:32 AM
Thank you very much. a helpful answer