Identity and Access Management API, REST: ServiceAccount.list
Retrieves the list of ServiceAccount resources in the specified folder.
HTTP request
GET https://iam.api.cloud.yandex.net/iam/v1/serviceAccounts
Query parameters
Parameter | Description |
---|---|
folderId | Required. ID of the folder to list service accounts in. To get the folder ID, use a list request. The maximum string length in characters is 50. |
pageSize | The maximum number of results per page to return. If the number of available results is larger than pageSize, the service returns a nextPageToken that can be used to get the next page of results in subsequent list requests. Default value: 100 The maximum value is 1000. |
pageToken | Page token. To get the next page of results, set pageToken to the nextPageToken returned by a previous list request. The maximum string length in characters is 2000. |
filter | A filter expression that filters resources listed in the response. The expression must specify:
The maximum string length in characters is 1000. |
Response
HTTP Code: 200 - OK
{
"serviceAccounts": [
{
"id": "string",
"folderId": "string",
"createdAt": "string",
"name": "string",
"description": "string",
"labels": "object",
"lastAuthenticatedAt": "string"
}
],
"nextPageToken": "string"
}
Field | Description |
---|---|
serviceAccounts[] | object List of ServiceAccount resources. |
serviceAccounts[]. id |
string ID of the service account. |
serviceAccounts[]. folderId |
string ID of the folder that the service account belongs to. |
serviceAccounts[]. createdAt |
string (date-time) Creation timestamp. String in RFC3339 text format. The range of possible values is from To work with values in this field, use the APIs described in the Protocol Buffers reference. In some languages, built-in datetime utilities do not support nanosecond precision (9 digits). |
serviceAccounts[]. name |
string Name of the service account. The name is unique within the cloud. 3-63 characters long. |
serviceAccounts[]. description |
string Description of the service account. 0-256 characters long. |
serviceAccounts[]. labels |
object Resource labels as |
serviceAccounts[]. lastAuthenticatedAt |
string (date-time) Timestamp for the last authentication of this service account. String in RFC3339 text format. The range of possible values is from To work with values in this field, use the APIs described in the Protocol Buffers reference. In some languages, built-in datetime utilities do not support nanosecond precision (9 digits). |
nextPageToken | string This token allows you to get the next page of results for list requests. If the number of results is larger than pageSize, use the nextPageToken as the value for the pageToken query parameter in the next list request. Each subsequent list request will have its own nextPageToken to continue paging through the results. |