Routing TagAction API

get listing

GET /api/rest/admin/tag-actions

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.eyJzdWIiOjI1MywiYXVkIjpbImFkbWluIl0sImV4cCI6MTc4NDM4MTM5Mn0.RLzpxaA5bRHQv6YVcRl-FVDsx6ubIhMSNhQcLUP9hdc
Host: example.org
Cookie: 

Route

GET /api/rest/admin/tag-actions

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/"6a490b681e3b1df8a7f99e0bafc82586"
cache-control: max-age=0, private, must-revalidate
x-request-id: 89e6ee6a-e8ba-49f3-8a35-807276e80a74
x-runtime: 0.009592
content-length: 807

Status

200 OK

Body

{
  "data": [
    {
      "id": "1",
      "type": "tag-actions",
      "links": {
        "self": "http://example.org/api/rest/admin/tag-actions/1"
      },
      "attributes": {
        "name": "Clear tags"
      }
    },
    {
      "id": "2",
      "type": "tag-actions",
      "links": {
        "self": "http://example.org/api/rest/admin/tag-actions/2"
      },
      "attributes": {
        "name": "Remove selected tags"
      }
    },
    {
      "id": "3",
      "type": "tag-actions",
      "links": {
        "self": "http://example.org/api/rest/admin/tag-actions/3"
      },
      "attributes": {
        "name": "Append selected tags"
      }
    },
    {
      "id": "4",
      "type": "tag-actions",
      "links": {
        "self": "http://example.org/api/rest/admin/tag-actions/4"
      },
      "attributes": {
        "name": "Intersection with selected tags"
      }
    }
  ],
  "meta": {
    "total-count": 4
  },
  "links": {
    "first": "http://example.org/api/rest/admin/tag-actions?page%5Bnumber%5D=1&page%5Bsize%5D=50",
    "last": "http://example.org/api/rest/admin/tag-actions?page%5Bnumber%5D=1&page%5Bsize%5D=50"
  }
}