OAUTH Application API, REST: Application.List
Retrieves the list of OAuth applications in the specified organization.
HTTP request
GET https://organization-manager.api.yandexcloud.kz/organization-manager/v1/idp/application/oauth/applications
Query parameters
Request to list OAuth applications.
|
Field |
Description |
|
organizationId |
string Required field. ID of the organization to list OAuth applications in. |
|
pageSize |
string (int64) The maximum number of results per page to return. |
|
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
{
"applications": [
{
"id": "string",
"name": "string",
"organizationId": "string",
"description": "string",
"groupClaimsSettings": {
"groupDistributionType": "string"
},
"clientGrant": {
"clientId": "string",
"authorizedScopes": [
"string"
]
},
"status": "string",
"labels": "object",
"createdAt": "string",
"updatedAt": "string"
}
],
"nextPageToken": "string"
}
Response message for ApplicationService.List.
|
Field |
Description |
|
applications[] |
List of OAuth applications. |
|
nextPageToken |
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. |
|
organizationId |
string ID of the organization that the application belongs to. |
|
description |
string Description of the application. 0-256 characters long. |
|
groupClaimsSettings |
Settings of the group claims |
|
clientGrant |
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 |
|
createdAt |
string (date-time) Creation timestamp. String in RFC3339 To work with values in this field, use the APIs described in the |
|
updatedAt |
string (date-time) Modification timestamp. String in RFC3339 To work with values in this field, use the APIs described in the |
GroupClaimsSettings
Settings of the group claims
|
Field |
Description |
|
groupDistributionType |
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 |
|
clientId |
string Required field. OAuth client id |
|
authorizedScopes[] |
string List of authorized client scopes by the application |