Trust Certificate

Trust Certificate

Add to list of currently trusted certificates

Request
URI
POST
https://{api_host}/cloudapi/1.0.0/ssl/trustedCertificates
COPY
Request Body
TrustedCertificate of type(s) application/json
Optional

Show optional properties

{
    "alias": "string",
    "certificate": "-----BEGIN CERTIFICATE----- <sample certificate contents> -----END CERTIFICATE-----"
}
{
    "id": "string",
    "alias": "string",
    "certificate": "-----BEGIN CERTIFICATE----- <sample certificate contents> -----END CERTIFICATE-----"
}
Authentication
This operation uses the following authentication methods.
Responses
201

Created

Returns TrustedCertificate of type(s) application/json;version=39.1
"TrustedCertificate Object"
string
id
Optional
Constraints: maxLength: 128

id

string
alias
Required
Constraints: maxLength: 255

Name, case insensitive

string
certificate
Required

PEM encoded certificate. All extraneous whitespace and other information is removed.


Code Samples
COPY
                    curl -X POST -H 'Authorization: <value>' -H 'Content-Type: application/json' -d '{"alias:"string","certificate:"string"}' https://{api_host}/cloudapi/1.0.0/ssl/trustedCertificates