Transport protocol API

get listing

GET /api/rest/admin/transport-protocols

Parameters

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

Request

Headers

Accept: application/vnd.api+json
Content-Type: application/vnd.api+json
Authorization: eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOjI0NSwiYXVkIjpbImFkbWluIl0sImV4cCI6MTc2NzM1ODU3Mn0.C6N-ZOicdOUI1pMsydru_GJ-m20lVaRNGOwfXjj6bGs
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: 3aa6adc1-1ef2-4bce-abca-6144ac7eb488
x-runtime: 0.006801
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"
  }
}