Identity and Access Management API, gRPC: OAuthClientService.List
Retrieves the list of OAuthClient resources views in the specified folder
gRPC request
rpc List (ListOAuthClientsRequest) returns (ListOAuthClientsResponse)
ListOAuthClientsRequest
{
"page_size": "int64",
"page_token": "string",
"folder_id": "string"
}
Field |
Description |
page_size |
int64 The maximum number of results per page to return. If the number of available |
page_token |
string Page token. To get the next page of results, set |
folder_id |
string Required field. ID of the folder to list oauth clients for |
ListOAuthClientsResponse
{
"oauth_clients": [
{
"id": "string",
"name": "string"
}
],
"next_page_token": "string"
}
Field |
Description |
oauth_clients[] |
List of OAuthClient resource views |
next_page_token |
string This token allows you to get the next page of results for list requests. If the number of results |
OAuthClientListView
Field |
Description |
id |
string ID of the OAuthClient resource. |
name |
string Name of the OAuthClient resource. |