Service Types API

update values

PUT /api/rest/admin/service-types/:id

Parameters

Name Description
data[type] Resource type (service-types)
data[id] Service type ID
data[attributes][name] Name
data[attributes][provisioning-class] Provisioning class

Request

Headers

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

Route

PUT /api/rest/admin/service-types/8

Body

{"data":{"type":"service-types","id":8,"attributes":{"name":"name","provisioning-class":"Billing::Provisioning::Logging"}}}

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/"296c72fd7eb4ff2dd11957979cf8b846"
Cache-Control: max-age=0, private, must-revalidate
X-Request-Id: 0d38e87e-5ca2-413b-bd04-30ac2806aca9
X-Runtime: 0.023720
Content-Length: 240

Status

200 OK

Body

{
  "data": {
    "id": "8",
    "type": "service-types",
    "links": {
      "self": "http://example.org/api/rest/admin/service-types/8"
    },
    "attributes": {
      "name": "name",
      "force-renew": false,
      "provisioning-class": "Billing::Provisioning::Logging",
      "variables": {
        "foo": "bar"
      }
    }
  }
}