Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

The SERVICENOW Library is an importable library containing functions to connect, authenticate, and interact with the ServiceNow API. This library is used in the ServiceNow Adapter.

Import the SERVICENOW library into your project and use the built in help to review how to use each function. On import, typically only the SERVICENOWclient module needs to be required in order to create the client and access the API methods.

Code Block
languagelua
require "SERVICENOW.SERVICENOWclient"  

The SERVICENOW Library:

Use the Translator’s built in help to review how to use each function:

Expand
titleSERVICENOWclient - sets up the adapter framework

Sets up the ServiceNow Adapter framework, adding the method modules to a metatable and storing the configurations from the custom fields in a table to call the API.

...