1.0.0 • Published 3 years ago

node-red-contrib-servicenow-table-api v1.0.0

Weekly downloads
-
License
ISC
Repository
github
Last release
3 years ago

node-red-contrib-servicenow-table-api

A Node-RED nodes to use Service Now Table API Table API doc.

Install

Run command on Node-RED installation directory.

npm install node-red-contrib-servicenow-table-api

or run command for global installation.

npm install -g node-red-contrib-servicenow-table-api

Nodes

  • Retrieve Records: Retrieves multiple records for the specified table (GET)
  • Retrieve Record: Retrieves the record identified by the specified sys_id from the specified table (GET)
  • Modify Record: Updates the specified record with the request body. (PUT)
  • Update Record: Updates the specified record with the name-value pairs included in the request body (PATCH)
  • Create Record: Inserts one record in the specified table. Multiple record insertion is not supported by this method (POST)
  • Delete Record: Deletes the specified record from the specified table. (DELETE)

Config Nodes

  • Servicenow-config: Configure instance, user and password (basic auth)

Message parameters

  • Retrieve Records Properties
PropertyUse
msg.topicmandatory tableName
msg.sys_parm_queryOptional Query Parameters (default '')
msg.sysparm_display_valueOptional Query Parameters (default false)
msg.sysparm_exclude_reference_link)Optional Query Parameters (default false)
msg.sysparm_suppress_pagination_headerOptional Query Parameters (default false)
msg.sysparm_fieldsOptional Query Parameters (default 10)
msg.sysparm_limitOptional Query Parameters (default '')
msg.sysparm_viewOptional Query Parameters (default '')
msg.sysparm_query_categoryOptional Query Parameters (default '')
msg.sysparm_query_no_domainOptional Query Parameters (default false)
msg.sysparm_no_countOptional Query Parameters (default false)