Catalog item one-liner — jsn

Create a catalog item with its variables in a single command.

What can JSN do for this ServiceNow workflow? Create a catalog item with its variables in a single command. JSN gives you a direct terminal workflow instead of requiring the ServiceNow web interface for every inspection or change.
CommandWhat it does
jsn catalogitems create --name "Demo Hero Laptop" --variable "model:string:Model" --variables '{"model":"X1 Carbon"}'Item + variables, one shot
jsn catalogitems show <id>See the item with variables resolved
jsn catalogitems create
jsn catalogitems create \
    --name "Demo Hero Laptop" \
    --variable "model:string:Model" \
    --variables '{"model":"X1 Carbon"}'

Created: Demo Hero Laptop (1 variable(s))

Get started

Install, point it at your instance, then run this feature.

npm install -g @jacebenson/jsn
jsn setup
jsn catalogitems create --name "Demo Hero Laptop" --variable "model:string:Model" --variables '{"model":"X1 Carbon"}'
Full setup guide & skill docs →

← All features