Summary
          Rename a leaf
          Description
          Update the label of a leaf.
          Route
          POST /golden_config/renameLeaf
          Roles
          
            admin
engineering
support
          
          Parameters
          
            DetailsExampleSchema
          
          
            
              
                | Name | Type | Required | Description | 
            
            
              
    | label | string | yes | New label. | 
    | tree | string | yes | Tree's ID. | 
    | nodeid | string | yes | Node's ID. | 
            
          
          
            Copied to Clipboard
            
            {
  "label": "nodeNorth",
  "tree": "f088f3e6-c3e8-145d-de8a-a7b7e71d7f48",
  "nodeid": "6f747de9-86e7-0bd1-fc65-b860696a9893"
}
           
          
            Copied to Clipboard
            
            {
  "type": "object",
  "properties": {
    "label": {
      "type": "string",
      "examples": [
        "nodeNorth",
        "nodeSouth",
        "nodeEast",
        "nodeWest"
      ]
    },
    "tree": {
      "$ref": "IDType"
    },
    "nodeid": {
      "$ref": "IDType"
    }
  },
  "required": [
    "label",
    "tree",
    "nodeid"
  ],
  "additionalProperties": false
}
           
          Return
          
            DetailsExampleSchema
          
          
            
              
                | Name | Type | Description | 
            
            
              
                | data | array | Device names in the Node. | 
            
          
          
            Copied to Clipboard
            
            [
  "junos0",
  "arista0",
  "junos0",
  "iosxr0",
  "iosxr0"
]
           
          
            Copied to Clipboard
            
            {
  "type": "array",
  "items": {
    "$ref": "deviceNames"
  },
  "minItems": 1
}