Routing RoutingTag API

get listing

GET /api/rest/admin/routing-tags

Parameters

Name Description
filter[id] id 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

Accept: application/vnd.api+json
Content-Type: application/vnd.api+json
Authorization: eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOjIxMiwiYXVkIjpbImFkbWluIl0sImV4cCI6MTc3MjIxMjAxMH0.9JOPrSYu8673KNwK6ULFK87rLhC5avsIMHHCsWFLBAM
Host: example.org
Cookie: 

Route

GET /api/rest/admin/routing-tags

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/"0250159aa78ccb70f2679f50381a108b"
cache-control: max-age=0, private, must-revalidate
x-request-id: af80989f-7899-43e6-ae71-df598f833737
x-runtime: 0.006928
content-length: 637

Status

200 OK

Body

{
  "data": [
    {
      "id": "16",
      "type": "routing-tags",
      "links": {
        "self": "http://example.org/api/rest/admin/routing-tags/16"
      },
      "attributes": {
        "name": "ua_cli"
      }
    },
    {
      "id": "17",
      "type": "routing-tags",
      "links": {
        "self": "http://example.org/api/rest/admin/routing-tags/17"
      },
      "attributes": {
        "name": "emergency"
      }
    },
    {
      "id": "18",
      "type": "routing-tags",
      "links": {
        "self": "http://example.org/api/rest/admin/routing-tags/18"
      },
      "attributes": {
        "name": "us_cli"
      }
    }
  ],
  "meta": {
    "total-count": 3
  },
  "links": {
    "first": "http://example.org/api/rest/admin/routing-tags?page%5Bnumber%5D=1&page%5Bsize%5D=50",
    "last": "http://example.org/api/rest/admin/routing-tags?page%5Bnumber%5D=1&page%5Bsize%5D=50"
  }
}