Sensors API

get specific entry

GET /api/rest/admin/sensors/:id

Request

Headers

Version: HTTP/1.0
Accept: application/vnd.api+json
Content-Type: application/vnd.api+json
Authorization: eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOjIxMSwiYXVkIjpbImFkbWluIl0sImV4cCI6MTc0MDg1MzA0MX0.wquygPXQSGHECrk28wW_6TOT6icfNgmnaDFy4n2Z8Fs
Host: example.org
Cookie: 

Route

GET /api/rest/admin/sensors/3

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/"415902439c688342fedc761111390254"
Cache-Control: max-age=0, private, must-revalidate
X-Request-Id: ff324efd-e02f-4578-bc5f-511d021cfdd5
X-Runtime: 0.007822
Content-Length: 257

Status

200 OK

Body

{
  "data": {
    "id": "3",
    "type": "sensors",
    "links": {
      "self": "http://example.org/api/rest/admin/sensors/3"
    },
    "attributes": {
      "name": "sensor3",
      "mode-id": 1,
      "source-interface": null,
      "target-mac": null,
      "use-routing": false,
      "target-ip": "192.168.0.2",
      "source-ip": "192.168.0.1"
    }
  }
}