Yandex Cloud
Search
Contact UsGet started
  • Pricing
  • Customer Stories
  • Documentation
  • Blog
  • All Services
  • System Status
    • Featured
    • Infrastructure & Network
    • Data Platform
    • Containers
    • Developer tools
    • Serverless
    • Security
    • Monitoring & Resources
    • AI Studio
    • Business tools
  • All Solutions
    • By industry
    • By use case
    • Economics and Pricing
    • Security
    • Technical Support
    • Start testing with double trial credits
    • Cloud credits to scale your IT product
    • Gateway to Russia
    • Cloud for Startups
    • Center for Technologies and Society
    • Yandex Cloud Partner program
  • Pricing
  • Customer Stories
  • Documentation
  • Blog
© 2025 Direct Cursus Technology L.L.C.
Yandex Identity and Access Management
  • Secure use of Yandex Cloud
  • Access management
  • Pricing policy
  • Role reference
  • Terraform reference
    • API authentication
      • Overview
        • Overview
        • Get
        • List
        • Create
        • Update
        • Delete
  • Monitoring metrics
  • Audit Trails events
  • Release notes

In this article:

  • gRPC request
  • ListOAuthClientsRequest
  • ListOAuthClientsResponse
  • OAuthClientListView
  1. API reference
  2. gRPC
  3. OAuthClient
  4. List

Identity and Access Management API, gRPC: OAuthClientService.List

Written by
Yandex Cloud
Updated at August 8, 2025
  • gRPC request
  • ListOAuthClientsRequest
  • ListOAuthClientsResponse
  • OAuthClientListView

Retrieves the list of OAuthClient resources views in the specified folder

gRPC requestgRPC request

rpc List (ListOAuthClientsRequest) returns (ListOAuthClientsResponse)

ListOAuthClientsRequestListOAuthClientsRequest

{
  "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
results is larger than page_size,
the service returns a ListOAuthClientsResponse.next_page_token
that can be used to get the next page of results in subsequent list requests.

page_token

string

Page token. To get the next page of results, set page_token to the
ListOAuthClientsResponse.next_page_token returned by a previous list request.

folder_id

string

Required field. ID of the folder to list oauth clients for
To get the folder ID, use a yandex.cloud.resourcemanager.v1.FolderService.List request.

ListOAuthClientsResponseListOAuthClientsResponse

{
  "oauth_clients": [
    {
      "id": "string",
      "name": "string"
    }
  ],
  "next_page_token": "string"
}

Field

Description

oauth_clients[]

OAuthClientListView

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
is larger than ListOAuthClientsRequest.page_size, use
the next_page_token as the value
for the ListOAuthClientsRequest.page_token query parameter
in the next list request. Each subsequent list request will have its own
next_page_token to continue paging through the results.

OAuthClientListViewOAuthClientListView

Field

Description

id

string

ID of the OAuthClient resource.

name

string

Name of the OAuthClient resource.

Was the article helpful?

Previous
Get
Next
Create
© 2025 Direct Cursus Technology L.L.C.