I want to create a web page (like a dashboard) to show information from ServiceNow like :
- Number of customers in Europe region
- Number of incidents
- Number of open incidents
- Number of close incidents
etc
Can you please suggest how should I proceed on this?(I know Java and have idea about Rest)
Thanks
I would as Kirk suggested in the comments above, build this in Servicenow, however, if that is not an option this is another way.
Figure out the queries you need to get for those four data points you listed; e.g. /cmn_company_list.do?sysparm_query=u_region=europe
Then make rest calls for each using the Aggregate API.
You may need to modify the [CORS][2] in Servicenow to allow your site to hit this endpoint, as well as use a service account.
Your code in Java would probably look something like;
Which should result in something like this;