CSR object

This table aggregates field membership for all versions of the CSR object.

Versioned schema fields

Any object field specific to a range of versions is indicated in its description, at what version the field was either introduced or removed. Any listed data field with no version number is common to all versions of the object.

FieldTypeDescription
CSR: Certificate Signing Request (CSR).
csrString, Nullpre-v2. String with PEM formatted CSR.
csrsCSR.​csrs[]v2. Certificate Signing Request (CSR) Object
CSR.csrs[]: Certificate Signing Request (CSR) Object
csrStringv2. String with PEM formatted CSR.
key​AlgorithmEnumeration, Nullv2. Key algorithm of the certificate.

Sample v1 object

{
    "csr": "-----BEGIN CERTIFICATE REQUEST-----\nMIIDPT ... <sample - removed for readability> .... hA9jc=\n-----END CERTIFICATE REQUEST-----"
}

Sample v2 object

{
    "csrs": [
        {
            "csr": "-----BEGIN CERTIFICATE REQUEST-----\nMIIDPT ... <sample - removed for readability> .... hA9jc=\n-----END CERTIFICATE REQUEST-----",
            "keyAlgorithm": "RSA"
        }
    ]
}