v2

latestOpenAPI 3.1.0CC-BY-SA 2.02026-07-2617789528.6 KB
Nodes

Get inherited node properties for a node

This API returns all node properties for a node, including group inherited ones.

get/nodes/{nodeId}/inheritedProperties

Path parameters

nodeIdstring uuid (or "root") required
Example:9a1773c9-0889-40b6-be89-f6504443ac1b

Id of the target node

Response

Node

result'success' | 'error' required

Result of the request

action'nodeInheritedProperties' required

The id of the action

Example response

{
  "data": [
    {
      "id": "9a1773c9-0889-40b6-be89-f6504443ac1b",
      "properties": [
        {
          "name": "datacenter",
          "value": "AMS2",
          "hierarchy": [
            {
              "kind": "global",
              "value": "{\"array\":[1,2],\"object\":{\"parent\":\"value\"},\"string\":\"parent\"}",
              "id": "9180b869-08a3-4173-9dd4-ab68f227e76c",
              "name": "all centos7"
            }
          ],
          "origval": "AMS2"
        }
      ]
    }
  ]
}