Nodes API

get specific entry

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

Request

Headers

Accept: application/vnd.api+json
Content-Type: application/vnd.api+json
Authorization: eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOjE1MywiYXVkIjpbImFkbWluIl0sImV4cCI6MTc2NzM1ODU2OH0.vi30TVyVN4I5OvevSIT5VDAH3G91Yq1hY3WupLNwKjE
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-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: 5a7e46ae-f1ad-4d95-9c8d-f2578f695ffe
x-runtime: 0.005762
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"
        }
      }
    }
  }
}