To modify a certificate, send the HTTP PUT request to the /settings/certificates/webServer endpoint.
HTTP Request
PUT https://<hostname>/api/v2/settings/certificates/webServer
Request Headers
The request contains the following headers.
Header
Required/Optional
Value
Description
Authorization
Required
Bearer <Access-Token>
Authenticates a client who sends the request to the server. Must contain the access token for the current logon session in the Bearer <Access-Token> format.
Request Body
To modify the certificate send the webServerCertificatePfxBase64 and specify the webServerCertificatePfxPassword you used to protect the file.
{
"webServerCertificatePfxBase64": "string",
"webServerCertificatePfxPassword": "string"
}
Response
The server returns the following response to the client.
Response Codes
A successfully completed operation returns a response code 204 (No Content).
Response Headers
The response to this request contains the following headers. The response may also include additional standard HTTP headers.
Header
Value
Description
Content-length
integer
Identifies the length of the response body message, in bytes.
Content-type
application/json
application/problem+json
Identifies the media type of the response body message.
Example
The following request uploads the security certificate.
Request:
PUT https://51.11.247.127/api/v2/settings/certificates/webServer