Nodes API

get specific entry

GET /api/rest/admin/nodes/:id

Request

Headers

Version: HTTP/1.0
Accept: application/vnd.api+json
Content-Type: application/vnd.api+json
Authorization: eyJhbGciOiJIUzI1NiJ9.eyJleHAiOjE3MTAyNTQ3MzIsInN1YiI6MTE2fQ.kfXrR61hEvn1SmqooaU-rlmuIEOvSYmpjm5u-dzpez4
Host: example.org
Cookie: 

Route

GET /api/rest/admin/nodes/6

Response

Headers

X-Frame-Options: SAMEORIGIN
X-XSS-Protection: 0
X-Content-Type-Options: nosniff
X-Download-Options: noopen
X-Permitted-Cross-Domain-Policies: none
Referrer-Policy: strict-origin-when-cross-origin
Content-Type: application/vnd.api+json
Vary: Accept
ETag: W/"9ba8c06c611724407b392365c7260612"
Cache-Control: max-age=0, private, must-revalidate
X-Request-Id: 83e45e78-15fa-405d-82dc-00c87f880411
X-Runtime: 0.010406
Content-Length: 318

Status

200 OK

Body

{
  "data": {
    "id": "6",
    "type": "nodes",
    "links": {
      "self": "http://example.org/api/rest/admin/nodes/6"
    },
    "attributes": {
      "name": "Node 6",
      "rpc-endpoint": "127.0.0.1:7"
    },
    "relationships": {
      "pop": {
        "links": {
          "self": "http://example.org/api/rest/admin/nodes/6/relationships/pop",
          "related": "http://example.org/api/rest/admin/nodes/6/pop"
        }
      }
    }
  }
}