Destination next rates API

get specific entry

GET /api/rest/admin/destination-next-rates/:id

Request

Headers

Accept: application/vnd.api+json
Content-Type: application/vnd.api+json
Authorization: eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOjc0LCJhdWQiOlsiYWRtaW4iXSwiZXhwIjoxNzY3MzU4NTYzfQ.RvHYju0pFdIbbKV6MUkBxZwWGkSc5PGxzVP3osp3NQI
Host: example.org
Cookie: 

Route

GET /api/rest/admin/destination-next-rates/3

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/"dd45412141181a5833b54e2034e49bd6"
cache-control: max-age=0, private, must-revalidate
x-request-id: e581fb90-23de-4e0d-9eb9-afeec06a864e
x-runtime: 0.006176
content-length: 539

Status

200 OK

Body

{
  "data": {
    "id": "3",
    "type": "destination-next-rates",
    "links": {
      "self": "http://example.org/api/rest/admin/destination-next-rates/3"
    },
    "attributes": {
      "next-rate": "0.0",
      "initial-rate": "0.0",
      "initial-interval": 5,
      "next-interval": 10,
      "connect-fee": "0.0",
      "apply-time": "2026-01-02T13:46:03.642Z",
      "applied": false,
      "external-id": null
    },
    "relationships": {
      "destination": {
        "links": {
          "self": "http://example.org/api/rest/admin/destination-next-rates/3/relationships/destination",
          "related": "http://example.org/api/rest/admin/destination-next-rates/3/destination"
        }
      }
    }
  }
}