- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎09-01-2016 05:55 AM
Hi community,
Hi try to get all Task sys_ID with the Request or Resquest_item sys_ID, with the REST API Explorer.
Any ideas ?
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎09-01-2016 06:10 AM
You will have to do a GET query on the sc_task table with the sysparm_query parameter where request_item = sys_id of the RITM record.
So it would look like:-
GET https://xxxxx.service-now.com/api/now/v1/table/sc_task?sysparm_query=request_item='sys_id'
For more information refer to the following link:-
http://wiki.servicenow.com/index.php?title=Table_API#gsc.tab=0
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎09-01-2016 06:10 AM
You will have to do a GET query on the sc_task table with the sysparm_query parameter where request_item = sys_id of the RITM record.
So it would look like:-
GET https://xxxxx.service-now.com/api/now/v1/table/sc_task?sysparm_query=request_item='sys_id'
For more information refer to the following link:-
http://wiki.servicenow.com/index.php?title=Table_API#gsc.tab=0
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎09-01-2016 06:15 AM
Ths Subhajit Das