Sensor levels API

get listing

GET /api/rest/admin/sensor-levels

Parameters

Name Description
filter[id] id filter
filter[name] name filter

Request

Headers

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

Route

GET /api/rest/admin/sensor-levels

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/"6ff4fbf6fc4c83c2b33d9acdb87b50a0"
Cache-Control: max-age=0, private, must-revalidate
X-Request-Id: f6c54e88-3597-4d8b-af55-e33dcbbd3c85
X-Runtime: 0.015203
Content-Length: 643

Status

200 OK

Body

{
  "data": [
    {
      "id": "1",
      "type": "sensor-levels",
      "links": {
        "self": "http://example.org/api/rest/admin/sensor-levels/1"
      },
      "attributes": {
        "name": "Signaling"
      }
    },
    {
      "id": "2",
      "type": "sensor-levels",
      "links": {
        "self": "http://example.org/api/rest/admin/sensor-levels/2"
      },
      "attributes": {
        "name": "RTP"
      }
    },
    {
      "id": "3",
      "type": "sensor-levels",
      "links": {
        "self": "http://example.org/api/rest/admin/sensor-levels/3"
      },
      "attributes": {
        "name": "Signaling+RTP"
      }
    }
  ],
  "meta": {
    "total-count": 3
  },
  "links": {
    "first": "http://example.org/api/rest/admin/sensor-levels?page%5Bnumber%5D=1&page%5Bsize%5D=50",
    "last": "http://example.org/api/rest/admin/sensor-levels?page%5Bnumber%5D=1&page%5Bsize%5D=50"
  }
}