Gateway groups API

get listing

GET /api/rest/admin/gateway-groups

Parameters

Name Description
filter[id] id filter
filter[name] name filter
filter[name-eq] name eq filter
filter[name-not-eq] name not eq filter
filter[name-cont] name cont filter
filter[name-start] name start filter
filter[name-end] name end filter
filter[name-in] name in filter
filter[name-not-in] name not in filter
filter[name-cont-any] name cont any filter

Request

Headers

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

Route

GET /api/rest/admin/gateway-groups

Response

Headers

X-Frame-Options: SAMEORIGIN
X-XSS-Protection: 0
X-Content-Type-Options: nosniff
X-Download-Options: noopen
X-Permitted-Cross-Domain-Policies: none
Referrer-Policy: strict-origin-when-cross-origin
Content-Type: application/vnd.api+json
Vary: Accept
ETag: W/"e4276f1e6b87f57a3b50eacc28872fbd"
Cache-Control: max-age=0, private, must-revalidate
X-Request-Id: c1959b10-c1b9-4f58-bfdf-1aae03cab2de
X-Runtime: 0.008060
Content-Length: 916

Status

200 OK

Body

{
  "data": [
    {
      "id": "14",
      "type": "gateway-groups",
      "links": {
        "self": "http://example.org/api/rest/admin/gateway-groups/14"
      },
      "attributes": {
        "name": "gateway_group_12"
      },
      "relationships": {
        "vendor": {
          "links": {
            "self": "http://example.org/api/rest/admin/gateway-groups/14/relationships/vendor",
            "related": "http://example.org/api/rest/admin/gateway-groups/14/vendor"
          }
        }
      }
    },
    {
      "id": "15",
      "type": "gateway-groups",
      "links": {
        "self": "http://example.org/api/rest/admin/gateway-groups/15"
      },
      "attributes": {
        "name": "gateway_group_13"
      },
      "relationships": {
        "vendor": {
          "links": {
            "self": "http://example.org/api/rest/admin/gateway-groups/15/relationships/vendor",
            "related": "http://example.org/api/rest/admin/gateway-groups/15/vendor"
          }
        }
      }
    }
  ],
  "meta": {
    "total-count": 2
  },
  "links": {
    "first": "http://example.org/api/rest/admin/gateway-groups?page%5Bnumber%5D=1&page%5Bsize%5D=50",
    "last": "http://example.org/api/rest/admin/gateway-groups?page%5Bnumber%5D=1&page%5Bsize%5D=50"
  }
}