PATCH Method
The PATCH HTTP method is used to update the values of the resource properties.
The PATCH HTTP method requires a request body. The body of the request must contain an updated representation of the resource properties. For example, to edit license settings, send the following request:
Request: PATCH https://<hostname>:1281/v2/licenseSettings
Request Header: Content-Type: application/json Authorization: Bearer
Request Body: { "autoupdateEnabled": false, } |
In case of success, the PATCH HTTP method returns the 200 OK response code.