ServiceNow CLI - an interesting feature to play with SN using REST API calls
The ServiceNow CLI is a command-line interface that lets us to perform instance operations from our local system. We can extend the CLI to include new commands that meet the application's needs. Benefits The ServiceNow CLI lets us to: Perform basic CRUD operations on records in SN instance. Develop custom components and deploy them to SN instance to personalize a UI. Create custom commands that enable to manage custom applications from the command line. Use the ServiceNow CLI in scripts to simplify setup tasks and operational activities. Architecture Commands are stored in a table on the instance where we are connected to. When the ServiceNow CLI connects to the instance, it receives all the available commands supported by that instance. Commands map to a REST endpoint that executes asynchronously. Activating ServiceNow CLI in Windows machine: Here are the steps I followed to run this functionality succe...