PATCH Method
In this article
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. The body may contain all resource properties or only those properties that the client wants to edit. For example, to edit license settings, send the following request:
Request: PATCH https://<Availability-Console>: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 Success response code.