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

Versioned schema members

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

MemberTypeDescription
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"
        }
    ]
}