Services API

update values

PUT /api/rest/admin/services/:id

Parameters

Name Description
data[type] Resource type (services)
data[id] Service type ID
data[attributes][name] Name
data[attributes][renew-price] Renew price
data[attributes][variables] Variables

Request

Headers

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

Route

PUT /api/rest/admin/services/8

Body

{"data":{"type":"services","id":8,"attributes":{"name":"name","renew-price":123.45,"variables":{"foo":"bar"}}}}

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/"7283dae8dca49cccc4478f5132c333df"
Cache-Control: max-age=0, private, must-revalidate
X-Request-Id: cffccffd-4752-45e5-b0fe-1eaa9f26fa6c
X-Runtime: 0.017522
Content-Length: 922

Status

200 OK

Body

{
  "data": {
    "id": "8",
    "type": "services",
    "links": {
      "self": "http://example.org/api/rest/admin/services/8"
    },
    "attributes": {
      "name": "name",
      "variables": {
        "foo": "bar"
      },
      "state": "Active",
      "initial-price": "29.79",
      "renew-price": "123.45",
      "created-at": "2025-03-01T16:05:21.988Z",
      "renew-at": null,
      "renew-period": "Disabled",
      "uuid": "09763b39-2ffd-4000-9497-3397506cbd60"
    },
    "relationships": {
      "account": {
        "links": {
          "self": "http://example.org/api/rest/admin/services/8/relationships/account",
          "related": "http://example.org/api/rest/admin/services/8/account"
        },
        "data": {
          "type": "accounts",
          "id": "83"
        }
      },
      "service-type": {
        "links": {
          "self": "http://example.org/api/rest/admin/services/8/relationships/service-type",
          "related": "http://example.org/api/rest/admin/services/8/service-type"
        }
      },
      "transactions": {
        "links": {
          "self": "http://example.org/api/rest/admin/services/8/relationships/transactions",
          "related": "http://example.org/api/rest/admin/services/8/transactions"
        }
      }
    }
  }
}