Generate CSR
DescriptionCreates a new certificate signing request (CSR). A CSR is encrypted text that contains information about your organization (organization name, country, and so on) and your Web server’s public key, which is a public certificate the is generated on the server that can be used to forward this request to a certificate authority (CA). A private key is also usually created at the same time as the CSR.
Request
URLURL
Request Body
{
"algorithm": "string",
"display_name": "string",
"key_size": 0
}
Cryptographic algorithm(asymmetric) used by the public key for data encryption.
The certificate signing request name
Size measured in bits of the public key used in a cryptographic algorithm.
The certificate owner’s information. (CN, O, OU, C, ST, L)
PEM encoded certificate data.
Authentication
Response
Response BodyResponse Body
200 OK
{
"algorithm": "string",
"display_name": "string",
"key_size": 0,
"pem_encoded": "string"
}
Cryptographic algorithm(asymmetric) used by the public key for data encryption.
The certificate signing request name
Size measured in bits of the public key used in a cryptographic algorithm.
The certificate owner’s information. (CN, O, OU, C, ST, L)
PEM encoded certificate data.
Errors
Unknown backend error