Retrieves nodes in a cluster.
HTTP request syntax (URI)
GET <base_URI>/v7/storage/nodes
Return codes
Code | Data | Description |
---|---|---|
200 | node | Array of nodes retrieved successfully. |
500 | Error message | Error associated with the storage system. |
501 | No Data | Server has not implemented the request operation on the resource. |
Any HTTP status code other than 200 indicates that the API did not complete successfully.
Request example
curl -vk -H "X-Api-Key: zrxvSDAv9x.RIP4gkmKarG3beF.or.4Tc2im7oeqYN88C9XPGHxbXC" https://172.17.11.11:8444/v7/storage/nodes
Response example
HTTP/1.1 200 OK { "nodes": [ { "UUID": "bbd85dd2-3016-11d5-9001-040403000307", "firmwareVersion": "13.9.6809.00", "ipAddresses": [ "192.168.0.190", "10.251.48.1" ], "model": "N800", "name": "G800-443037-1", "nodeId": 1, "objectId": "313a3a3a3a3a3a303a3a3a4f49445f24232140255f56", "serial": "443037", "status": "ONLINE" }, { "UUID": "b2e122e0-3016-11d5-9001-f03c9491cf19", "firmwareVersion": "13.9.6809.00", "ipAddresses": [ "192.168.0.191", "10.251.52.1" ], "model": "N800", "name": "G800-443037-2", "nodeId": 2, "objectId": "323a3a3a3a3a3a303a3a3a4f49445f24232140255f56", "serial": "443037", "status": "ONLINE" } ] }