Gateway groups API

create new entry

POST /api/rest/admin/gateway-groups

Parameters

Name Description
data[type] Resource type (gateway-groups)
data[attributes][name] Name
data[relationships][vendor] Vendor

Request

Headers

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

Route

POST /api/rest/admin/gateway-groups

Body

{"data":{"type":"gateway-groups","attributes":{"name":"name"},"relationships":{"vendor":{"data":{"type":"contractors","id":54}}}}}

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/"9b45dac146f2f6e54a558d86cd1f1f95"
Cache-Control: max-age=0, private, must-revalidate
X-Request-Id: fbcba9e6-3882-41f3-8ec7-fee142e06556
X-Runtime: 0.019794
Content-Length: 376

Status

201 Created

Body

{
  "data": {
    "id": "17",
    "type": "gateway-groups",
    "links": {
      "self": "http://example.org/api/rest/admin/gateway-groups/17"
    },
    "attributes": {
      "name": "name"
    },
    "relationships": {
      "vendor": {
        "links": {
          "self": "http://example.org/api/rest/admin/gateway-groups/17/relationships/vendor",
          "related": "http://example.org/api/rest/admin/gateway-groups/17/vendor"
        },
        "data": {
          "type": "contractors",
          "id": "54"
        }
      }
    }
  }
}