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
    • 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

List all nodes with filtering and pagination

GET
http://localhost:3000/inventory_manager/v1/nodes
GET
/inventory_manager/v1/nodes
$curl http://localhost:3000/inventory_manager/v1/nodes \
> -u "<username>:<password>"
1{
2 "status": "Success",
3 "result": {
4 "data": [
5 {
6 "inventory_id": "string",
7 "name": "string",
8 "version": "2024-01-15T09:30:00Z",
9 "attributes": {},
10 "tags": [
11 "string"
12 ],
13 "created_at": "2024-01-15T09:30:00Z",
14 "updated_at": "2024-01-15T09:30:00Z",
15 "created_by": "string",
16 "updated_by": "string"
17 }
18 ],
19 "totalRecords": 1.1,
20 "currentPage": 1.1,
21 "pageSize": 1.1,
22 "totalPages": 1.1
23 },
24 "error": "string"
25}
Returns a paginated list of nodes with optional filtering by name, type, and inventory.
Was this page helpful?
Previous

List all tags for a specific inventory

Next
Built with

Authentication

AuthorizationBasic

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

Query parameters

pagedoubleOptionalDefaults to 1
Page number, used when skip is not provided
pageSizedoubleOptionalDefaults to 25

Number of items to return (page size)

skipdoubleOptional

Number of items to skip (takes precedence over page-based calculation)

sortFieldstringOptional

Field to sort by (optional, uses natural order if not provided)

sortOrderdoubleOptionalDefaults to 1

Sort order: 1 for ascending, -1 for descending

searchstringOptional
search
inventory_identifierstring or list of stringsOptional
Filter by specific inventory or inventories
typeslist of stringsOptional
types
tagslist of stringsOptional
tags

Response

Paginated list of nodes
statusstring
resultobject
errorstring

Errors

500
Internal Server Error