Networks API

update values

PUT /api/rest/admin/networks/:id

Parameters

Name Description
data[type] Resource type (networks)
data[id] Network ID
data[attributes][name] Name
data[relationships][network-type] Network type

Request

Headers

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

Route

PUT /api/rest/admin/networks/4657

Body

{"data":{"type":"networks","id":4657,"attributes":{"name":"name"},"relationships":{"network-type":{"data":{"type":"network_types","id":25}}}}}

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/"890c502a5c8653534f15d8a70395205a"
Cache-Control: max-age=0, private, must-revalidate
X-Request-Id: e25abc23-f8d2-4c4f-bb39-4e231aa81067
X-Runtime: 0.024692
Content-Length: 338

Status

200 OK

Body

{
  "data": {
    "id": "4657",
    "type": "networks",
    "links": {
      "self": "http://example.org/api/rest/admin/networks/4657"
    },
    "attributes": {
      "name": "name"
    },
    "relationships": {
      "network-type": {
        "links": {
          "self": "http://example.org/api/rest/admin/networks/4657/relationships/network-type",
          "related": "http://example.org/api/rest/admin/networks/4657/network-type"
        }
      }
    }
  }
}