- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎04-01-2019 03:13 AM
Are there any API present in servicenow from which I can get the list of application currently installed in servicenow??If Yes can you provide the link and what all roles are required to access the API else if No is there any workaround to get the list of applications??
Solved! Go to Solution.
- Labels:
-
Cost Management

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎04-01-2019 04:33 AM
You can use REST API to fetch the applications present in servicenow. The applications are present under table sys_scope.
Here is a GET URL which returns the active applications in your instance.
https://your-instance.service-now.com/api/now/table/sys_scope?sysparm_limit=100
Mark the comment as a correct answer and also helpful if it answers your question.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎04-01-2019 04:33 AM
You can use REST API to fetch the applications present in servicenow. The applications are present under table sys_scope.
Here is a GET URL which returns the active applications in your instance.
https://your-instance.service-now.com/api/now/table/sys_scope?sysparm_limit=100
Mark the comment as a correct answer and also helpful if it answers your question.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎04-14-2020 05:36 AM
Could you tell me what role needed to call this api?