SAML Federation API, gRPC: CertificateService.List
Retrieves the list of certificates in the specified federation.
gRPC request
rpc List (ListCertificatesRequest) returns (ListCertificatesResponse)
ListCertificatesRequest
{
"federationId": "string",
"pageSize": "int64",
"pageToken": "string",
"filter": "string"
}
Field |
Description |
federationId |
string Required field. ID of the federation to list certificates in. |
pageSize |
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.
|
ListCertificatesResponse
{
"certificates": [
{
"id": "string",
"federationId": "string",
"name": "string",
"description": "string",
"createdAt": "google.protobuf.Timestamp",
"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 |
Creation timestamp. |
data |
string Required field. Certificate data in PEM format. |