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.eyJzdWIiOjcxLCJhdWQiOlsiYWRtaW4iXSwiZXhwIjoxNzg2MzYwMjg4fQ.Q-8IXTap_Afg7rFXjqqV9VfVLITd9_KDhOwZHeLQdds
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/"520d4962d99f649b7f78ce46f4c743ea"
cache-control: max-age=0, private, must-revalidate
x-request-id: b9c0bef3-a93e-4e94-9ab8-e20dafbabbe8
x-runtime: 0.006111
content-length: 168

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,
      "rate-provider-id": null
    }
  }
}