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 reference] |
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 reference] |
Get List of System Tables - Admin (Use sys_db_object) | get_system_tables_admin | Get a list of tables created by 'system' user [API reference] |
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 reference] |
Get List of Tables | get_tables | Get a list of tables. [API reference] |
Get Table Columns | get_table_columns | Get a list of columns of a table [API reference] |
Get Table Rows | get_table_rows | Get table rows [API reference] |
Delete a Table Row | insert_table_row | Insert a row into the table. [API reference] |
Update a Table Row | update_table_row | Insert a row into the table. [API reference] |
Delete table row | delete_table_row | Delete the specified row in the table by row 'sys_id'. [API reference] |
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. |
Generic Request (Bulk Write) | generic_request_bulk_write | This is a generic endpoint for bulk write purpose. 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. |