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.eyJleHAiOjE3MzE1Nzg3NTcsInN1YiI6MTM2fQ.yBgfSKDt_e8t2T2cSnI3K22Jwu2IbzE-FxpKW3HxSCI
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/"511991ab1c601ab29645dd062b892776"
Cache-Control: max-age=0, private, must-revalidate
X-Request-Id: 752b3386-851f-4206-8751-7d5ec4ab6af9
X-Runtime: 0.010494
Content-Length: 350

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"
        },
        "data": {
          "type": "pops",
          "id": "6"
        }
      }
    }
  }
}