Service Types API

create new entry

POST /api/rest/admin/service-types

Parameters

Name Description
data[type] Resource type (service-types)
data[attributes][name] Name
data[attributes][provisioning-class] Provisioning class
data[attributes][force-renew] Force renew
data[attributes][variables] Variables

Request

Headers

Version: HTTP/1.0
Accept: application/vnd.api+json
Content-Type: application/vnd.api+json
Authorization: eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOjIxNywiYXVkIjpbImFkbWluIl0sImV4cCI6MTc0MDg1MzA0MX0.eyI9OpjQu3sxKlKDbNCFWkvKP88QPluM-60HtI-aoQw
Host: example.org
Cookie: 

Route

POST /api/rest/admin/service-types

Body

{"data":{"type":"service-types","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/"f21387e73668031b7bd9e594044f35ae"
Cache-Control: max-age=0, private, must-revalidate
X-Request-Id: 2ee5fb0f-864a-49a3-8a6d-b0421c4e3237
X-Runtime: 0.017695
Content-Length: 231

Status

201 Created

Body

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