Web API tile with ServiceNow

This article covers how to use the Web API tile to query data from ServiceNow and display this data in SquaredUp DS.

Should you use the Web API tile or the dedicated ServiceNow tile?

The ServiceNow tile is available in SquaredUp DS v4.4 and above, and offers easier configuration than the Web API tile. You can display incidents and change request with the ServiceNow tile. If you want to use any other data from ServiceNow, you need to use the Web API tile.

The Web API tile can display other data in addition to incidents and change requests, it gives you more flexibility and advanced configurations.

You can also watch the Webinar: Web API and ServiceNow

For more information about using the dedicated ServiceNow tile see How to use the ServiceNow tile.

This article covers these areas:

  1. Prerequisites
  2. Configuration in ServiceNow
  3. Adding ServiceNow as a Web API provider in SquaredUp DS
  4. Walkthrough: Configuring the Web API tile for ServiceNow

Prerequisites

  • The SquaredUp server must have access to your ServiceNow instance on port 443 (HTTPS), since it is the server that connects to ServiceNow, and not your users' browser.
  • If you use a proxy server you may need to configure the proxy How to configure SquaredUp DS to use a proxy.
  • A ServiceNow account. It depends on the roles of the ServiceNow account you use for the ServiceNow provider what functions are available in the ServiceNow tile.

How the ServiceNow account affects the ServiceNow tile
The permissions of the ServiceNow account you are using for your ServiceNow providerplugin affect what you can see and do in the ServiceNow tile.

We recommend using a service account, which means you create an account specifically to use with the ServiceNow providerplugin. You have different options for setting up this service account:

  • ServiceNow permissions assignment with roles
    Give the ServiceNow account the ITIL and rest_api_explorer roles.
  • ServiceNow permissions assignment with ACLs, in place of roles
    If you don't want to use the ITIL role (for licensing or security reasons) give the ServiceNow account only the rest_api_explorer role and use ACLs to give the account more rights. This will limit the functionality of the ServiceNow tile.Using accounts without the ITIL role may cause data streams to error.

To allow the ServiceNow views to be pulled into the ServiceNow Grid visualization the ServiceNow account must also have the 'admin' role in ServiceNow.

Configuration in ServiceNow

  1. In your ServiceNow account in the Application Navigator (left-hand menu) go to System OAuth and click Application Registry.
  2. Click Create an OAuth API endpoint for external clients.
  3. Give it an easy to remember name like SquaredUp DS and leave the other default settings as they are.
  4. Once you've created the endpoint, open the entry to view the client ID and client secret. Click the padlock next to the client secret to see it.
  5. Copy client ID and client secret into a notepad for use later.

Adding ServiceNow as a Web API provider in SquaredUp DS

  1. Log on to SquaredUp DS and navigate to the right-hand menu ☰ > system > Integrations
  2. Under Integrations click on Web API, and then OAuth and type in a suitable name, e.g. ServiceNow.
  3. Change the grant type to password.
  4. The base URL should look something like https://instancename.service-now.com/api/now/ where instancename is your instance. If ServiceNow is installed on-premises, this may be something different. This URL is prepended to every request URL.
  5. The token URL will be something like https://instancename.service-now.com/oauth_token.do where instancename is your instance.
  6. username and password are exactly those used to sign into the account which was setup with the permissions mentioned in the prerequisites.
  7. client id and secret are taken from the notes you made earlier.
  8. Leave the authorization scope empty
  9. Click save.

If the configuration is correct you will see a green tick.

If the provider is not authorized it could be that some of the provider configuration is incorrect (for example the username, password, secret etc), or if you use a proxy it could be that the proxy is not configured How to configure SquaredUp DS to use a proxy.

Walkthrough: Configuring the Web API tile for ServiceNow

This walkthrough takes you through configuring a simple tile to show a list of the open incidents.

Take a look at the ServiceNow documentation on the ServiceNow Aggregate API

You can also watch the How to integrate SquaredUp and ServiceNow tutorial Video.

  1. Create a new dashboard and click on Integrations > Web API.
  2. Select Web API (Grid).
  3. The scope section allows you to specify resources, which can be used later in the tile configuration to insert resource properties into the query. For this walkthrough you can leave the scope empty.
  4. In the provider section select the ServiceNow provider that you created.
  5. In the http mode section paste table/incident into the URL box to make this a GET request to table/incident. This base URL is prepended to the URL.
  6. In the headers & data section click add under data to add the following parameters to the request to select the correct data and format for the grid:
    • name: sysparm_display_value value: true. This will show the display value of any columns which are IDs by default.
    • name: sysparm_fields value: sys_id,urgency,short_description,severity,state,assigned_to. This will only select the fields we are interested in. You can compile a list of fields using the REST API Explorer on your own ServiceNow instance.
    • name: sysparm_limit value: 20. This will limit the number of results to the first twenty.
    • name: sysparm_query value: active=true. This will show open tickets only.
  7. In the response data section, paste result into the box.
    Rows of data should now be shown.
    The grid columns and grid options sections allow you to configure the columns and column names.
  8. In the grid columns section, hide the sys_id column, rename and reorder other columns as you like. Some columns, like assigned_to will be returned as [object Object]. Click edit next to these columns, and then click the {} icon, then select the display value to have these display correctly.
  9. In the grid options section, we can set the row link to make each row hyperlink to that ServiceNow incident. To make each row replace the sys_id with the one from that object the URL should be https://<your-instance>.service-now.com/nav_to.do?uri=%2Fincident.do%3Fsys_id%3D{{sys_id}}
    For more help customizing the columns of data see How to use the Grid Designer.
  10. Click done.

Was this article helpful?


Have more questions or facing an issue?