Networks API

get listing

GET /api/rest/admin/networks

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.eyJzdWIiOjE0NywiYXVkIjpbImFkbWluIl0sImV4cCI6MTc2NzM1ODU2OH0.RoRIkPjEkbKySBJ_4YpM92ELUgxy8z8_-wUW14SOzX8
Host: example.org
Cookie: 

Route

GET /api/rest/admin/networks

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/"6e8038cde62311b61df3a43603d291be"
cache-control: max-age=0, private, must-revalidate
x-request-id: 6ab1d3ae-f067-4d6d-a18a-a6e1d6fc9037
x-runtime: 0.012340
content-length: 565

Status

200 OK

Body

{
  "data": [
    {
      "id": "4147",
      "type": "networks",
      "links": {
        "self": "http://example.org/api/rest/admin/networks/4147"
      },
      "attributes": {
        "name": "US Eagle Mobile"
      },
      "relationships": {
        "network-type": {
          "links": {
            "self": "http://example.org/api/rest/admin/networks/4147/relationships/network-type",
            "related": "http://example.org/api/rest/admin/networks/4147/network-type"
          }
        }
      }
    }
  ],
  "meta": {
    "total-count": 1
  },
  "links": {
    "first": "http://example.org/api/rest/admin/networks?page%5Bnumber%5D=1&page%5Bsize%5D=50",
    "last": "http://example.org/api/rest/admin/networks?page%5Bnumber%5D=1&page%5Bsize%5D=50"
  }
}