SAML Application API, gRPC: SignatureCertificateService.Get
Returns the specified signature certificate.
To get the list of available certificates, make a List request.
gRPC request
rpc Get (GetSignatureCertificateRequest) returns (SignatureCertificate)
GetSignatureCertificateRequest
{
"signature_certificate_id": "string"
}
Request to get a signature certificate by ID.
|
Field |
Description |
|
signature_certificate_id |
string Required field. ID of the signature certificate to return. |
SignatureCertificate
{
"id": "string",
"application_id": "string",
"status": "Status",
"name": "string",
"description": "string",
"created_at": "google.protobuf.Timestamp",
"data": "string",
"fingerprint": "string",
"not_after": "google.protobuf.Timestamp",
"not_before": "google.protobuf.Timestamp"
}
A signature certificate for SAML applications.
|
Field |
Description |
|
id |
string Unique identifier of the signature certificate. |
|
application_id |
string ID of the SAML application that the signature certificate belongs to. |
|
status |
enum Status Current status of the signature certificate.
|
|
name |
string Name of the signature certificate. |
|
description |
string Description of the signature certificate. |
|
created_at |
Creation timestamp. |
|
data |
string Certificate data in PEM format. |
|
fingerprint |
string SHA256-fingerprint of the signature certificate. |
|
not_after |
Time after which the signature certificate is not valid. |
|
not_before |
Time before which the signature certificate is not valid. |