- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-23-2022 07:31 PM
Hi Guys - I'm spinnin' my wheels here. It's my first time developing with Service now. I am a SAS developer trying to make an API.
I have an SC Task number.
I want to obtain the corresponding RITM number.
This is my current URL query, which does not work:
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-23-2022 09:32 PM
1.) Go to REST API Explorer from Application navigator in ServiceNow
2.) Do the below, to get the API and also you can verify the result.
You can use the below API
https://[your instance name]/api/now/table/sc_task?sysparm_query=numer%[Pass the sc_task number dynamically]&sysparm_display_value=true&sysparm_fields=parent&sysparm_limit=1
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-23-2022 09:32 PM
1.) Go to REST API Explorer from Application navigator in ServiceNow
2.) Do the below, to get the API and also you can verify the result.
You can use the below API
https://[your instance name]/api/now/table/sc_task?sysparm_query=numer%[Pass the sc_task number dynamically]&sysparm_display_value=true&sysparm_fields=parent&sysparm_limit=1
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-24-2022 05:27 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-24-2022 09:34 PM
Cheers !!