/servicenow-import | Type: Application | PCID required: Yes
Tools
| Tool | Description |
|---|---|
servicenow_import_get_result | Get the result of an import |
servicenow_import_stage_multiple_records | Import multiple records into a staging table |
servicenow_import_stage_record | Import a single record into a staging table |
servicenow_import_get_result
Get the result of an import Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
stagingTableName | string | Yes | — | Name of the import set staging table |
sys_id | string | Yes | — | sys_id of the import set record |
servicenow_import_stage_multiple_records
Import multiple records into a staging table Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
stagingTableName | string | Yes | — | Name of the import set staging table |
multi_import_set_id | string | No | — | sys_id to group multiple batch imports together under one import set |
records | object[] | Yes | — | Array of records to import. Each record is an object of column name-value pairs (all values must be strings). |
servicenow_import_stage_record
Import a single record into a staging table Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
stagingTableName | string | Yes | — | Name of the import set staging table (e.g., u_import_users) |
body | object | Yes | — | Record fields to import. All values must be strings (ServiceNow import set requirement). Keys are staging table column names. |

