SAML Application API, REST: SignatureCertificate.List
Retrieves the list of signature certificates for the specified SAML application.
HTTP request
GET https://organization-manager.api.yandexcloud.kz/organization-manager/v1/idp/application/saml/signature-certificates
Query parameters
Request to list signature certificates for a SAML application.
|
Field |
Description |
|
applicationId |
string Required field. ID of the SAML application to list certificates for. |
|
pageSize |
string (int64) The maximum number of results per page to return. |
|
pageToken |
string Page token for pagination. |
|
filter |
string A filter expression that filters resources listed in the response. |
Response
HTTP Code: 200 - OK
{
"signatureCertificates": [
{
"id": "string",
"applicationId": "string",
"status": "string",
"name": "string",
"description": "string",
"createdAt": "string",
"data": "string",
"fingerprint": "string",
"notAfter": "string",
"notBefore": "string"
}
],
"nextPageToken": "string"
}
Response message for SignatureCertificateService.List.
|
Field |
Description |
|
signatureCertificates[] |
List of signature certificates. |
|
nextPageToken |
string Token for getting the next page of the list. |
SignatureCertificate
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 |