Transport protocol API

get listing

GET /api/rest/admin/equipment/transport-protocols

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.eyJleHAiOjE3MTAyNTQ3MzEsInN1YiI6MTAwfQ.pJ_otFEMjWhdUv02P0ZzjMxHNAoxWpD7cnOguzPQPMY
Host: example.org
Cookie: 

Route

GET /api/rest/admin/equipment/transport-protocols

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/"ab11ea8c61e60061e0430507fd0077a1"
Cache-Control: max-age=0, private, must-revalidate
X-Request-Id: 31017a20-11ad-4973-84ca-304f21259982
X-Runtime: 0.008845
Content-Length: 725

Status

200 OK

Body

{
  "data": [
    {
      "id": "1",
      "type": "transport-protocols",
      "links": {
        "self": "http://example.org/api/rest/admin/equipment/transport-protocols/1"
      },
      "attributes": {
        "name": "UDP"
      }
    },
    {
      "id": "2",
      "type": "transport-protocols",
      "links": {
        "self": "http://example.org/api/rest/admin/equipment/transport-protocols/2"
      },
      "attributes": {
        "name": "TCP"
      }
    },
    {
      "id": "3",
      "type": "transport-protocols",
      "links": {
        "self": "http://example.org/api/rest/admin/equipment/transport-protocols/3"
      },
      "attributes": {
        "name": "TLS"
      }
    }
  ],
  "meta": {
    "total-count": 3
  },
  "links": {
    "first": "http://example.org/api/rest/admin/equipment/transport-protocols?page%5Bnumber%5D=1&page%5Bsize%5D=50",
    "last": "http://example.org/api/rest/admin/equipment/transport-protocols?page%5Bnumber%5D=1&page%5Bsize%5D=50"
  }
}