SAML Application API, REST: SignatureCertificate.Get
Returns the specified signature certificate.
To get the list of available certificates, make a List request.
HTTP request
GET https://organization-manager.api.cloud.yandex.net/organization-manager/v1/idp/application/saml/signature-certificates/{signatureCertificateId}
Path parameters
Request to get a signature certificate by ID.
|
Field |
Description |
|
signatureCertificateId |
string Required field. ID of the signature certificate to return. |
Response
HTTP Code: 200 - OK
{
"id": "string",
"applicationId": "string",
"status": "string",
"name": "string",
"description": "string",
"createdAt": "string",
"data": "string",
"fingerprint": "string",
"notAfter": "string",
"notBefore": "string"
}
A signature certificate for SAML applications.
|
Field |
Description |
|
id |
string Unique identifier of the signature certificate. |
|
applicationId |
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. |
|
createdAt |
string (date-time) Creation timestamp. String in RFC3339 To work with values in this field, use the APIs described in the |
|
data |
string Certificate data in PEM format. |
|
fingerprint |
string SHA256-fingerprint of the signature certificate. |
|
notAfter |
string (date-time) Time after which the signature certificate is not valid. String in RFC3339 To work with values in this field, use the APIs described in the |
|
notBefore |
string (date-time) Time before which the signature certificate is not valid. String in RFC3339 To work with values in this field, use the APIs described in the |