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

Get inventory action by identifier

GET
http://localhost:3000/inventory_manager/v1/inventories/:inventoryIdentifier/actions/:actionIdentifier
GET
/inventory_manager/v1/inventories/:inventoryIdentifier/actions/:actionIdentifier
$curl http://localhost:3000/inventory_manager/v1/inventories/string/actions/string \
> -u "<username>:<password>"
1{
2 "status": "Success",
3 "result": {
4 "inventory_id": "string",
5 "name": "string",
6 "action_type": "iag5-service",
7 "key": "string",
8 "action_config": {},
9 "action_parameters": {},
10 "last_executed": "2024-01-15T09:30:00Z",
11 "created_at": "2024-01-15T09:30:00Z",
12 "updated_at": "2024-01-15T09:30:00Z",
13 "created_by": "string",
14 "updated_by": "string",
15 "_id": "string"
16 },
17 "error": "string"
18}
Returns a single action document by ID or name.
Was this page helpful?
Previous

Get inventory by identifier

Next
Built with

Authentication

AuthorizationBasic

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

Path parameters

inventoryIdentifierstringRequired
Inventory ID or name
actionIdentifierstringRequired
Action ID or name

Response

Single action document
statusstring
resultobject
The action document
errorstring

Errors

500
Internal Server Error