OAUTH Application API, gRPC: ApplicationService.List
Retrieves the list of OAuth applications in the specified organization.
gRPC request
rpc List (ListApplicationsRequest) returns (ListApplicationsResponse)
ListApplicationsRequest
{
"organization_id": "string",
"page_size": "int64",
"page_token": "string",
"filter": "string"
}
Request to list OAuth applications.
|
Field |
Description |
|
organization_id |
string Required field. ID of the organization to list OAuth applications in. |
|
page_size |
int64 The maximum number of results per page to return. |
|
page_token |
string Page token. To get the next page of results, set |
|
filter |
string A filter expression that filters resources listed in the response. |
ListApplicationsResponse
{
"applications": [
{
"id": "string",
"name": "string",
"organization_id": "string",
"description": "string",
"group_claims_settings": {
"group_distribution_type": "GroupDistributionType"
},
"client_grant": {
"client_id": "string",
"authorized_scopes": [
"string"
]
},
"status": "Status",
"labels": "map<string, string>",
"created_at": "google.protobuf.Timestamp",
"updated_at": "google.protobuf.Timestamp"
}
],
"next_page_token": "string"
}
Response message for ApplicationService.List.
|
Field |
Description |
|
applications[] |
List of OAuth applications. |
|
next_page_token |
string This token allows you to get the next page of results for list requests. |
Application
An OAuth application resource.
|
Field |
Description |
|
id |
string ID of the application. |
|
name |
string Name of the application. |
|
organization_id |
string ID of the organization that the application belongs to. |
|
description |
string Description of the application. 0-256 characters long. |
|
group_claims_settings |
Settings of the group claims |
|
client_grant |
Represents current connection to the OAuth client with specified scopes |
|
status |
enum Status Current status of the application.
|
|
labels |
object (map<string, string>) Resource labels as |
|
created_at |
Creation timestamp. |
|
updated_at |
Modification timestamp. |
GroupClaimsSettings
Settings of the group claims
|
Field |
Description |
|
group_distribution_type |
enum GroupDistributionType Represents current distribution type of the groups. I.e. which groups are visible for the application users.
|
ClientGrant
Represents connection to the OAuth client with specified scopes
|
Field |
Description |
|
client_id |
string Required field. OAuth client id |
|
authorized_scopes[] |
string List of authorized client scopes by the application |