Update SSL
Method | URL |
---|---|
PUT | https://cloud.medianova.com/api/v1/ssl/{{organization_uuid}} |
Parameters | Description | Type | Required |
---|---|---|---|
organization_uuid | The created organization in Medianova Cloud Panel unit ID value. Path parameter. | String | Yes |
ssl_name | The name or description of the SSL certificate. This parameter contains the name or description of the SSL certificate used by the server or service. | String | No |
ssl_crt | A string containing the certificate file of the SSL certificate. This parameter represents the content of the server's SSL certificate. | String | Yes |
ssl_key | A string containing the private key file for the SSL certificate. This parameter represents the private key used for the SSL certificate. | String | Yes |
ss_pass | A string containing the password for the SSL certificate's private key. This parameter contains the password for the private key of the SSL certificate. | String | No |
Payload
{
"ssl_name": "test",
"ssl_crt": "hidden_crt",
"ssl_key": "hidden_key",
"ssl_pass": ""
}