Certificate Manager Private CA API, gRPC: PrivateCaContentService.GetChain
Written by
Updated at December 17, 2024
Returns the certificate chain for the specified certificate authority.
gRPC request
rpc GetChain (GetCertificateAuthorityChainRequest) returns (GetCertificateAuthorityChainResponse)
GetCertificateAuthorityChainRequest
{
"certificate_authority_id": "string"
}
Request message for getting the certificate chain of a certificate authority.
Field |
Description |
certificate_authority_id |
string Required field. ID of the certificate authority to get the chain for. |
GetCertificateAuthorityChainResponse
{
"certificate_authority_id": "string",
"certificate_chain": [
"string"
]
}
Response message containing the certificate chain.
Field |
Description |
certificate_authority_id |
string ID of the certificate authority. |
certificate_chain[] |
string The certificate chain in PEM format. |