Networks API

create new entry

POST /api/rest/admin/networks

Parameters

Name Description
data[type] Resource type (networks)
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.eyJzdWIiOjE0NSwiYXVkIjpbImFkbWluIl0sImV4cCI6MTc0MDg1MzAzNn0.Bx88z52Ie3-Lwu1oYRSl27ZishPb53xQzOl4nYY7H0Y
Host: example.org
Cookie: 

Route

POST /api/rest/admin/networks

Body

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

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/"1094d5fae2977141edd4eb1617ec7385"
Cache-Control: max-age=0, private, must-revalidate
X-Request-Id: c28f9444-9138-4339-be70-8d3e28b6e01d
X-Runtime: 0.017855
Content-Length: 342

Status

201 Created

Body

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