Endpoints
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 |
|---|---|---|
| Delete a Table Row | insert_table_row | Insert a row into the table. [API reference] |
| Delete Attachment | delete_attachment | Delete an attachment by its sys_id. [API reference] |
| Delete table row | delete_table_row | Delete the specified row in the table by row 'sys_id'. [API reference] |
| Download Table Attachment (Single - Using Id) | download_attachment | |
| Download Table Attachments (Multiple - Using Query) | download_attachments | Download all attachments for a specified table, or table and its row sys_id or specific attachment sys_id. When files are saved they are given a unique name using the pattern {table_sys_id}_{attachment_sys_id}_{attachment-file_name} so files with the same filename from different parent records will not overwrite each other in the download folder. [API reference] |
| Download Table Attachments By Parent Row Search | download_attachments_by_parent_search | Download attachments for parent rows returned by the parent query. When files are saved they are given a unique name using the pattern {table_sys_id}_{attachment_sys_id}_{attachment-file_name} so files with the same filename from different parent records will not overwrite each other in the download folder. [API reference] |
| Get Attachments | get_attachments | Get attachment details for a specified table or table + parent sys_id (e.g. incident) or a specific attachment sys_id. You can also search using search criterial related to attachment record (e.g. filename starts with xyz) [API reference] |
| Get Attachments By Parent Row Search | get_attachments_by_parent_search | Get table rows [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 List of Tables | get_tables | Get a list of tables. [API reference] |
| 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 Record Labels (Tags) | get_record_labels | Returns UI labels (tags) applied to a specific record using the ServiceNow label framework. |
| Get Table Columns | get_table_columns | Get a list of columns of a table [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 Table Row Count | get_table_row_count | Get table row count (count for all rows or for specified query filter) [API reference] |
| Get Table Rows | get_table_rows | Get table rows [API reference] |
| Test Connection | test_connection | |
| Update a Table Row | update_table_row | Insert a row into the table. [API reference] |
| Upload Attachment | upload_attachment | Upload a file as an attachment to a ServiceNow record. Requires table name and sys_id in headers. [API reference] |
| Make Generic REST API 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. |
| Make Generic REST API 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. |