Timezones API

get listing

GET /api/rest/admin/timezones

Parameters

Name Description
filter[id] id filter
filter[name] name filter

Request

Headers

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

Route

GET /api/rest/admin/timezones

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/"0f8b5aa83cc65eb367c726dc6963d585"
Cache-Control: max-age=0, private, must-revalidate
X-Request-Id: 152f3c95-c87e-4adb-9797-7f272ae55fae
X-Runtime: 0.008893
Content-Length: 399

Status

200 OK

Body

{
  "data": [
    {
      "id": "1",
      "type": "timezones",
      "links": {
        "self": "http://example.org/api/rest/admin/timezones/1"
      },
      "attributes": {
        "name": "UTC",
        "abbrev": "UTC",
        "utc-offset": "PT0S",
        "is-dst": false
      }
    }
  ],
  "meta": {
    "total-count": 1
  },
  "links": {
    "first": "http://example.org/api/rest/admin/timezones?page%5Bnumber%5D=1&page%5Bsize%5D=50",
    "last": "http://example.org/api/rest/admin/timezones?page%5Bnumber%5D=1&page%5Bsize%5D=50"
  }
}