{ "opencollection": "1.0.0", "info": { "name": "ServiceNow Import Sets API", "version": "Zurich" }, "request": { "auth": { "type": "basic", "username": "{{username}}", "password": "{{password}}" } }, "items": [ { "info": { "name": "Import Sets", "type": "folder" }, "items": [ { "info": { "name": "Servicenow Insert a Record Into an Import Set Staging Table", "type": "http" }, "http": { "method": "POST", "url": "https://{instance}.servicenow.com/api/now/import/:stagingTableName", "params": [ { "name": "stagingTableName", "value": "u_import_incidents", "type": "path", "description": "The name of the import set staging table. This table must extend sys_import_set_row and have an associated transform map configured." } ], "body": { "type": "json", "data": "{}" } }, "docs": "Inserts a single record into the specified import set staging table. If an active transform map exists for the staging table, the record is synchronously transformed and loaded into the target table. The response includes the transformation result indicating whether the record was inserted, updated, or encountered an error." }, { "info": { "name": "Servicenow Insert Multiple Records Into an Import Set Staging Table", "type": "http" }, "http": { "method": "POST", "url": "https://{instance}.servicenow.com/api/now/import/:stagingTableName/insertMultiple", "params": [ { "name": "stagingTableName", "value": "example_value", "type": "path", "description": "The name of the import set staging table." } ], "body": { "type": "json", "data": "{}" } }, "docs": "Inserts multiple records into the specified import set staging table in a single request. Each record is individually transformed if an active transform map exists." } ] } ], "bundled": true }