SAML Federation API, gRPC: CertificateService.Get
Статья создана
Обновлена 7 ноября 2024 г.
Returns the specified certificate.
To get the list of available certificates, make a List request.
gRPC request
rpc Get (GetCertificateRequest) returns (Certificate)
GetCertificateRequest
{
"certificateId": "string"
}
Field |
Description |
certificateId |
string ID of the certificate to return. |
Certificate
{
"id": "string",
"federationId": "string",
"name": "string",
"description": "string",
"createdAt": "google.protobuf.Timestamp",
"data": "string"
}
A certificate.
Field |
Description |
id |
string Required field. ID of the certificate. |
federationId |
string Required field. ID of the federation that the certificate belongs to. |
name |
string Name of the certificate. |
description |
string Description of the certificate. |
createdAt |
Creation timestamp. |
data |
string Required field. Certificate data in PEM format. |