Services API

get specific entry

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

Request

Headers

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

Route

GET /api/rest/admin/services/6

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/"784ee5044c33b305f6e742526b512ea7"
Cache-Control: max-age=0, private, must-revalidate
X-Request-Id: 48ef8eae-fb0f-4a30-8e61-73199edbf3f0
X-Runtime: 0.007692
Content-Length: 923

Status

200 OK

Body

{
  "data": {
    "id": "6",
    "type": "services",
    "links": {
      "self": "http://example.org/api/rest/admin/services/6"
    },
    "attributes": {
      "name": "Service_6",
      "variables": {
        "baz": 123
      },
      "state": "Active",
      "initial-price": "11.59",
      "renew-price": "7.34",
      "created-at": "2025-03-01T09:41:21.779Z",
      "renew-at": null,
      "renew-period": "Disabled",
      "uuid": "843ae735-41f1-4a3f-927f-690612ae0adc"
    },
    "relationships": {
      "account": {
        "links": {
          "self": "http://example.org/api/rest/admin/services/6/relationships/account",
          "related": "http://example.org/api/rest/admin/services/6/account"
        },
        "data": {
          "type": "accounts",
          "id": "81"
        }
      },
      "service-type": {
        "links": {
          "self": "http://example.org/api/rest/admin/services/6/relationships/service-type",
          "related": "http://example.org/api/rest/admin/services/6/service-type"
        }
      },
      "transactions": {
        "links": {
          "self": "http://example.org/api/rest/admin/services/6/relationships/transactions",
          "related": "http://example.org/api/rest/admin/services/6/transactions"
        }
      }
    }
  }
}