Transport protocol API

get listing

GET /api/rest/admin/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.eyJzdWIiOjI0MiwiYXVkIjpbImFkbWluIl0sImV4cCI6MTc0MDg1MzA0M30.UAXLXJEU4JYSqjCmjqZhfQZmBHrQs9onshDR1Y1duco
Host: example.org
Cookie: 

Route

GET /api/rest/admin/transport-protocols

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/"7a325a3cae177488cea208f3ca389ab2"
Cache-Control: max-age=0, private, must-revalidate
X-Request-Id: 673cf9f6-84ab-4d79-8d74-6512cc6f7fbb
X-Runtime: 0.008364
Content-Length: 675

Status

200 OK

Body

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