For AI agents: a documentation index is available at the root level at /llms.txt and /llms-full.txt. Append /llms.txt to any URL for a page-level index, or .md for the markdown version of any page.
Open sourceSupportFAQsDocs Home
DocumentationAPI ReferenceRelease notes
DocumentationAPI ReferenceRelease notes
  • Introduction
    • Overview
    • Authentication
  • Guides
    • Integration API routes
    • Operations Manager search APIs
    • Search API
    • URL query parameters
    • Use query parameters in API requests
  • Reference
        • POSTBuild inventory filter structure
        • POSTBulk load inventory nodes
        • DELClear all nodes from an inventory
        • POSTCreate a new inventory
        • POSTCreate a new inventory action
        • DELDelete an inventory
        • DELDelete an inventory action
        • POSTExpand node identifiers to full documents
        • POSTFind inventories and nodes by tags
        • GETGet inventory action by identifier
        • GETGet inventory by identifier
        • GETGet inventory manager overview statistics
        • GETGet node by identifier
        • GETGet tag by identifier
        • GETGet tags from accessible inventories
        • GETGet usage statistics for a tag
        • GETInventory manager health check
        • GETList all actions for a specific inventory
        • GETList all inventories with filtering and pagination
        • GETList all nodes for a specific inventory
        • GETList all nodes with filtering and pagination
        • GETList all tags for a specific inventory
        • GETList all tags with filtering and pagination
        • GETList inventory actions
LogoLogo
Open sourceSupportFAQsDocs Home
ReferenceInventory Manager

Bulk load inventory nodes

POST
http://localhost:3000/inventory_manager/v1/nodes/bulk
POST
/inventory_manager/v1/nodes/bulk
$curl -X POST http://localhost:3000/inventory_manager/v1/nodes/bulk \
> -H "Content-Type: application/json" \
> -u "<username>:<password>" \
> -d '{}'
1{
2 "status": "Success",
3 "result": {
4 "inventory": {
5 "id": "string",
6 "name": "string"
7 },
8 "statistics": {
9 "total": 1.1,
10 "inserted": 1.1,
11 "skipped": 1.1,
12 "errors": [
13 "string"
14 ]
15 }
16 },
17 "message": "string"
18}
Bulk insert nodes into an inventory. All existing nodes in the inventory are cleared before the new nodes are inserted.
Was this page helpful?
Previous

Clear all nodes from an inventory

Next
Built with

Authentication

AuthorizationBasic

Basic authentication of the form Basic <base64(username:password)>.

Request

request body
inventory_identifierstringOptional>=1 character
The ID or name of the inventory to populate with nodes
nodeslist of objectsOptional
Array of node objects to insert into the inventory. All existing nodes will be cleared before insertion.

Response

Result of bulk insertion with detailed statistics
statusstring
resultobject
messagestring
Success message with operation summary

Errors

500
Internal Server Error