get https://{hostname}/api/infrastructure/v1/nodes
This operation returns a list of all configured nodes.
Responses
200Successful response
This operation returns a list of all configured nodes.
200Successful response
xxxxxxxxxx
curl --request GET \
--url https://hostname/api/infrastructure/v1/nodes \
--header 'accept: application/json'
xxxxxxxxxx
18{
"page": {
"pageNumber": 1,
"pageSize": 100,
"totalPages": 1,
"totalResults": 2
},
"nodes": [
{
"nodeId": 1,
"hostname": "node1.us-ma-east-1.example.com"
},
{
"nodeId": 2,
"hostname": "node2.us-ma-east-1.example.com"
}
]
}