ServiceNow Connector
Documentation
Version: 1
Documentation

EndPoints for ServiceNow Connector


On this page you will see possible API actions you can perform with ServiceNow connector. We will refer this as API EndPoint or just EndPoint.

Label Name Description
Get List of Tables - Admin (Use sys_db_object) get_tables_admin Get a list of tables by quering sys_db_object. To read data from this object make sure user has read permission to this table. [API Help..]
Get List of User Tables - Admin (Use sys_db_object) get_user_tables_admin Get a list of tables not created by 'system' user [API Help..]
Get List of System Tables - Admin (Use sys_db_object) get_system_tables_admin Get a list of tables created by 'system' user [API Help..]
Get Table Columns - Admin (Use sys_dictionary) get_table_columns_admin Get a list of columns by quering sys_dictionary. To read data from this table make sure user has read permission to sys_dictionary table. [API Help..]
Get List of Tables get_tables Get a list of tables. [API Help..]
Get Table Columns get_table_columns Get a list of columns of a table [API Help..]
Get Table Rows get_table_rows Get table rows [API Help..]
Delete a Table Row insert_table_row Insert a row into the table. [API Help..]
Update a Table Row update_table_row Insert a row into the table. [API Help..]
Delete table row delete_table_row Delete the specified row in the table by row 'sys_id'. [API Help..]
Generic Request generic_request This is generic endpoint. Use this endpoint when some actions are not implemented by connector. Just enter partial URL (Required), Body, Method, Header etc. Most parameters are optional except URL.