SAML Federation API, gRPC: CertificateService.Get
Returns the specified certificate.
To get the list of available certificates, make a List request.
gRPC request
rpc Get (GetCertificateRequest) returns (Certificate)
GetCertificateRequest
{
"certificate_id": "string"
}
|
Field |
Description |
|
certificate_id |
string ID of the certificate to return. The maximum string length in characters is 50. |
Certificate
{
"id": "string",
"federation_id": "string",
"name": "string",
"description": "string",
"created_at": "google.protobuf.Timestamp",
"data": "string"
}
A certificate.
|
Field |
Description |
|
id |
string Required field. ID of the certificate. The maximum string length in characters is 50. |
|
federation_id |
string Required field. ID of the federation that the certificate belongs to. The maximum string length in characters is 50. |
|
name |
string Name of the certificate. Value must match the regular expression |
|
description |
string Description of the certificate. The maximum string length in characters is 256. |
|
created_at |
Creation timestamp. |
|
data |
string Required field. Certificate data in PEM format. The maximum string length in characters is 32000. |