Endpoint

/v1/cluster/nodes/{id}

GET

Retrieve node-specific info, such as serial number, mac address, uuid, etc

Parameters

Name Description Required
id The unique ID of the node Yes

Response

Codes

Code Description
200 Return value on success

Schema

{
  "description": "api_node",
  "type": "object",
  "properties": {
    "id": {
      "description": "id",
      "type": "number"
    },
    "node_status": {
      "description": "Status of the node",
      "type": "string"
    },
    "node_name": {
      "description": "User friendly node name",
      "type": "string"
    },
    "uuid": {
      "description": "Unique node identifier",
      "type": "string"
    },
    "label": {
      "description": "Physically identifiable label assigned to the hardware",
      "type": "string"
    },
    "model_number": {
      "description": "Node model number",
      "type": "string"
    },
    "serial_number": {
      "description": "Serial number",
      "type": "string"
    },
    "mac_address": {
      "description": "MAC address for the first network interface on this node",
      "type": "string"
    }
  }
}