Type alias CSRResponse

CSRResponse: NoIdObjectSkeletonInterface & {
    algorithm: string;
    certificateID: string;
    createdDate: string;
    id: string;
    request: string;
    subject: string;
    subjectAlternativeNames: string[];
}

CSR response object skeleton

Type declaration

  • algorithm: string

    The algorithm for the private key. The encryption algorithm will either be RSA-2048 or ECDSA P-256 depending on the algorithm choice. The default is RSA-2048.

  • certificateID: string

    The ID of the certificate created from this CSR if the CSR has been completed.

  • createdDate: string

    Creation timestamp: eg '2006-01-02T15:04:05Z07:00'

  • id: string

    The unique identifier for the CSR

  • request: string

    PEM formatted CSR.

  • subject: string

    the CSR subject

  • subjectAlternativeNames: string[]

    Additional domain or domains that the SSL certificate is securing