GET nodes/:nodeid
Returns details about the node identified by :node_id.
	Returns details about the node identified by :node_id. You can find the :node_id for each node using GET nodes.
In the body field, the following information is detailed in comma-separated format:
- 
Node Name 
- 
Host Address 
- 
Catalog Directory 
- 
Data Directory 
Resource URL
https://<NODE>:5444/nodes/:node_id
Authentication
Requires a VerticaAPIKey in the request header.
The API key must have restricted level security or higher.
Parameters
None.
Example request
| GET | https://<NODE>:5444/nodes/v_vmart_node0001 | 
Response:
{
    "body": [
        "v_vmart_node0001",
        "10.20.100.247,/home/dbadmin,/home/dbadmin"
    ],
    "href": "/nodes/v_vmart_node0001",
    "links": [],
    "mime-type": "application/vertica.node.json-v2"
}