Routing groups API

get listing

GET /api/rest/admin/routing/routing-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.eyJleHAiOjE3MTAyNTQ3MzUsInN1YiI6MTY1fQ.m4nmNhlKM0OtLFX40V8YMX0eGp0K_YOBgD6QLVJDQLw
Host: example.org
Cookie: 

Route

GET /api/rest/admin/routing/routing-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/"6efaeaa268728dbf0e08409d162f7881"
Cache-Control: max-age=0, private, must-revalidate
X-Request-Id: 4506abe1-6db5-4414-9944-c5a5ede90566
X-Runtime: 0.009174
Content-Length: 876

Status

200 OK

Body

{
  "data": [
    {
      "id": "20",
      "type": "routing-groups",
      "links": {
        "self": "http://example.org/api/rest/admin/routing/routing-groups/20"
      },
      "attributes": {
        "name": "Example Group #1"
      }
    },
    {
      "id": "21",
      "type": "routing-groups",
      "links": {
        "self": "http://example.org/api/rest/admin/routing/routing-groups/21"
      },
      "attributes": {
        "name": "Example Group #2"
      }
    },
    {
      "id": "33",
      "type": "routing-groups",
      "links": {
        "self": "http://example.org/api/rest/admin/routing/routing-groups/33"
      },
      "attributes": {
        "name": "routing_group_12"
      }
    },
    {
      "id": "34",
      "type": "routing-groups",
      "links": {
        "self": "http://example.org/api/rest/admin/routing/routing-groups/34"
      },
      "attributes": {
        "name": "routing_group_13"
      }
    }
  ],
  "meta": {
    "total-count": 4
  },
  "links": {
    "first": "http://example.org/api/rest/admin/routing/routing-groups?page%5Bnumber%5D=1&page%5Bsize%5D=50",
    "last": "http://example.org/api/rest/admin/routing/routing-groups?page%5Bnumber%5D=1&page%5Bsize%5D=50"
  }
}