Services API

create new entry

POST /api/rest/admin/services

Parameters

Name Description
data[type] Resource type (services)
data[attributes][name] Name
data[attributes][initial-price] Initial price
data[attributes][renew-price] Renew price
data[attributes][renew-at] Renew at
data[attributes][renew-period] Renew period
data[attributes][variables] Variables
data[relationships][account] Account
data[relationships][service-type] Service type

Request

Headers

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

Route

POST /api/rest/admin/services

Body

{"data":{"type":"services","attributes":{"name":"name","initial-price":1.23,"renew-price":3.24},"relationships":{"account":{"data":{"type":"accounts","id":"82"}},"service-type":{"data":{"type":"service-types","id":"13"}}}}}

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/"3f9ec372cfce3760a4395f2555c8b96a"
Cache-Control: max-age=0, private, must-revalidate
X-Request-Id: c70a9e34-6dcc-4243-a532-824b8a684f25
X-Runtime: 0.034124
Content-Length: 910

Status

201 Created

Body

{
  "data": {
    "id": "7",
    "type": "services",
    "links": {
      "self": "http://example.org/api/rest/admin/services/7"
    },
    "attributes": {
      "name": "name",
      "variables": null,
      "state": "Active",
      "initial-price": "1.23",
      "renew-price": "3.24",
      "created-at": "2025-03-01T18:07:21.908Z",
      "renew-at": null,
      "renew-period": "Disabled",
      "uuid": "c7aeec57-a9b0-4e5d-b24d-558f4ad93949"
    },
    "relationships": {
      "account": {
        "links": {
          "self": "http://example.org/api/rest/admin/services/7/relationships/account",
          "related": "http://example.org/api/rest/admin/services/7/account"
        },
        "data": {
          "type": "accounts",
          "id": "82"
        }
      },
      "service-type": {
        "links": {
          "self": "http://example.org/api/rest/admin/services/7/relationships/service-type",
          "related": "http://example.org/api/rest/admin/services/7/service-type"
        }
      },
      "transactions": {
        "links": {
          "self": "http://example.org/api/rest/admin/services/7/relationships/transactions",
          "related": "http://example.org/api/rest/admin/services/7/transactions"
        }
      }
    }
  }
}