Routing TagAction API

get listing

GET /api/rest/admin/tag-actions

Request

Headers

Version: HTTP/1.0
Accept: application/vnd.api+json
Content-Type: application/vnd.api+json
Authorization: eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOjIzNiwiYXVkIjpbImFkbWluIl0sImV4cCI6MTc0MDg1MzA0Mn0.Z_WB69GDWkbZPznej1VC2jVruDsBGaX6oLqCpwIDUvY
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: 88148069-775d-4272-94fc-c52fa7873281
X-Runtime: 0.008888
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"
  }
}