Currencies API

get specific entry

GET /api/rest/admin/currencies/:id

Request

Headers

Accept: application/vnd.api+json
Content-Type: application/vnd.api+json
Authorization: eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOjcwLCJhdWQiOlsiYWRtaW4iXSwiZXhwIjoxNzc2MzY1NzM0fQ.Y9fnq36i8IU4o7jt5P9hmu8UMc7oNHhH4fKXi-d06B0
Host: example.org
Cookie: 

Route

GET /api/rest/admin/currencies/4

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/"f09b9b45b8b5fe27bb541c690d23eb5a"
cache-control: max-age=0, private, must-revalidate
x-request-id: 5fb0cca2-7571-4ba4-b7f5-888fab990f60
x-runtime: 0.005091
content-length: 144

Status

200 OK

Body

{
  "data": {
    "id": "4",
    "type": "currencies",
    "links": {
      "self": "http://example.org/api/rest/admin/currencies/4"
    },
    "attributes": {
      "name": "AMD",
      "rate": 1.5
    }
  }
}