Identity and Access Management SAML API, REST: Certificate.List
Retrieves the list of certificates in the specified federation.
HTTP request
GET https://iam.api.cloud.yandex.net/iam/v1/saml/certificates
Query parameters
Field |
Description |
federationId |
string Required field. ID of the federation to list certificates in. |
pageSize |
string (int64) The maximum number of results per page to return. If the number of available |
pageToken |
string Page token. To get the next page of results, set |
filter |
string A filter expression that filters resources listed in the response.
|
Response
HTTP Code: 200 - OK
{
"certificates": [
{
"id": "string",
"federationId": "string",
"name": "string",
"description": "string",
"createdAt": "string",
"data": "string"
}
],
"nextPageToken": "string"
}
Field |
Description |
certificates[] |
List of certificates. |
nextPageToken |
string This token allows you to get the next page of results for list requests. If the number of results |
Certificate
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 |
string (date-time) Creation timestamp. String in RFC3339 To work with values in this field, use the APIs described in the |
data |
string Required field. Certificate data in PEM format. |