Get a node

get/servers/{serverName}/nodes/{nodeId}
Internal-Use Only

Retrieves a single node for a CAS server.

Request Samples

1

Response Samples

1{
2 "name": "worker1.grid.example.com",
3 "version": 1,
4 "role": "worker",
5 "ipAddress": "192.168.1.2",
6 "connected": true,
7 "links": [
8 {
9 "method": "GET",
10 "rel": "up",
11 "href": "/casManagement/servers/casServer/nodes",
12 "uri": "/casManagement/servers/casServer/nodes",
13 "type": "application/vnd.sas.collection",
14 "itemType": "application/vnd.sas.cas.server.node"
15 },
16 {
17 "method": "GET",
18 "rel": "self",
19 "href": "/casManagement/servers/cas-shared-default/nodes/worker1.grid.example.com",
20 "uri": "/casManagement/servers/cas-shared-default/nodes/worker1.grid.example.com",
21 "type": "application/vnd.sas.cas.server.node"
22 },
23 {
24 "method": "DELETE",
25 "rel": "delete",
26 "href": "/casManagement/servers/cas-shared-default/nodes/worker1.grid.example.com",
27 "uri": "/casManagement/servers/cas-shared-default/nodes/worker1.grid.example.com"
28 }
29 ]
30}

Path Parameters

NameTypeRequiredDescription
nodeId
string
true

Node ID on which to perform the operation.

serverName
string
true

Server name containing the session being requested.

Query Parameters

NameTypeRequiredDescription
sessionId
string
false

Session ID to use when connecting to retrieve the node. If not specified, a temporary session will be used.

Responses

StatusMeaningDescription
200OKInformation about the requested node was returned.Schema
400Bad RequestThe request was invalid.Schema
404Not FoundThe requested session in the requested server name does not exist, or the node requested does not exist.
409ConflictThe request could not be completed due to a conflict with the current state of the resource. Details are included in the response body.