Services API

get specific entry

GET /api/rest/admin/services/:id

Request

Headers

Accept: application/vnd.api+json
Content-Type: application/vnd.api+json
Authorization: eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOjI0MywiYXVkIjpbImFkbWluIl0sImV4cCI6MTc4NjM2MDI5OH0.z5D_p1JCuyXMgaZeEcdWn8X8ZGX-DC3gxNiAZD6T88U
Host: example.org
Cookie: 

Route

GET /api/rest/admin/services/9

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/"0b2eb10f9317bd4985fbbf655e1a14c8"
cache-control: max-age=0, private, must-revalidate
x-request-id: b6bb6ebf-807c-4604-a10e-8f54590f3c73
x-runtime: 0.005743
content-length: 1113

Status

200 OK

Body

{
  "data": {
    "id": "9",
    "type": "services",
    "links": {
      "self": "http://example.org/api/rest/admin/services/9"
    },
    "attributes": {
      "name": "Service_9",
      "variables": {
        "baz": 123
      },
      "state": "Active",
      "initial-price": "1.68",
      "renew-price": "75.81",
      "created-at": "2026-08-10T07:27:38.251Z",
      "renew-at": null,
      "renew-period": "Disabled",
      "uuid": "70893993-d8ba-41a2-ba08-7388a75dde22"
    },
    "relationships": {
      "account": {
        "links": {
          "self": "http://example.org/api/rest/admin/services/9/relationships/account",
          "related": "http://example.org/api/rest/admin/services/9/account"
        },
        "data": {
          "type": "accounts",
          "id": "91"
        }
      },
      "service-type": {
        "links": {
          "self": "http://example.org/api/rest/admin/services/9/relationships/service-type",
          "related": "http://example.org/api/rest/admin/services/9/service-type"
        }
      },
      "transactions": {
        "links": {
          "self": "http://example.org/api/rest/admin/services/9/relationships/transactions",
          "related": "http://example.org/api/rest/admin/services/9/transactions"
        }
      },
      "package-counters": {
        "links": {
          "self": "http://example.org/api/rest/admin/services/9/relationships/package-counters",
          "related": "http://example.org/api/rest/admin/services/9/package-counters"
        }
      }
    }
  }
}