Timezones API

get specific entry

GET /api/rest/admin/timezones/:id

Request

Headers

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

Route

GET /api/rest/admin/timezones/1

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/"53f53fdb81aa816f5fb6175455590c7d"
Cache-Control: max-age=0, private, must-revalidate
X-Request-Id: 1fd6bcb5-37f9-4fe9-b6d9-22ebc55c385d
X-Runtime: 0.006496
Content-Length: 181

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
    }
  }
}