Api to get list of Applications Installed

Manjunath P Jak
Kilo Contributor

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??

1 ACCEPTED SOLUTION

asifnoor
Kilo Patron

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.

View solution in original post

2 REPLIES 2

asifnoor
Kilo Patron

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.

Lele2
Giga Contributor

Could you tell me what role needed to call this api?