NetworkTypes API

update values

PUT /api/rest/admin/network-types/:id

Parameters

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

Request

Headers

Version: HTTP/1.0
Accept: application/vnd.api+json
Content-Type: application/vnd.api+json
Authorization: eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOjE0MSwiYXVkIjpbImFkbWluIl0sImV4cCI6MTc0MDg1MzAzNX0.U2HTR3-yjJm-PWAH17Da3Sbfh4D2WPwmH4-mcdIgC5Y
Host: example.org
Cookie: 

Route

PUT /api/rest/admin/network-types/22

Body

{"data":{"type":"network-types","id":22,"attributes":{"name":"name"}}}

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/"97726d8df605ec34361d9c840e2b6ada"
Cache-Control: max-age=0, private, must-revalidate
X-Request-Id: b2791054-d9ec-4150-8058-b9672236a3ee
X-Runtime: 0.013989
Content-Length: 142

Status

200 OK

Body

{
  "data": {
    "id": "22",
    "type": "network-types",
    "links": {
      "self": "http://example.org/api/rest/admin/network-types/22"
    },
    "attributes": {
      "name": "name"
    }
  }
}