Yandex Cloud
Search
Contact UsTry it for free
  • Customer Stories
  • Documentation
  • Blog
  • All Services
  • System Status
    • Featured
    • Infrastructure & Network
    • Data Platform
    • Containers
    • Developer tools
    • Serverless
    • Security
    • Monitoring & Resources
    • AI for business
    • 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
    • Price calculator
    • Pricing plans
  • Customer Stories
  • Documentation
  • Blog
© 2025 Direct Cursus Technology L.L.C.
Yandex Identity Hub
  • Access management
  • Pricing policy
  • Terraform reference
    • Authentication
      • Overview
        • Overview
        • Get
        • List
        • Update
        • ListOperations
        • ListAccessBindings
        • SetAccessBindings
        • UpdateAccessBindings
        • ListAccessPolicyBindings
        • BindAccessPolicy
        • UnbindAccessPolicy
  • Audit Trails events
  • Release notes

In this article:

  • gRPC request
  • access.ListAccessPolicyBindingsRequest
  • access.ListAccessPolicyBindingsResponse
  • AccessPolicyBinding
  1. API reference
  2. gRPC
  3. Organization
  4. ListAccessPolicyBindings

Identity Hub API, gRPC: OrganizationService.ListAccessPolicyBindings

Written by
Yandex Cloud
Updated at December 15, 2025
  • gRPC request
  • access.ListAccessPolicyBindingsRequest
  • access.ListAccessPolicyBindingsResponse
  • AccessPolicyBinding

Returns list of access policy bindings for the organization.

gRPC requestgRPC request

rpc ListAccessPolicyBindings (access.ListAccessPolicyBindingsRequest) returns (access.ListAccessPolicyBindingsResponse)

access.ListAccessPolicyBindingsRequestaccess.ListAccessPolicyBindingsRequest

{
  "resource_id": "string",
  "page_size": "int64",
  "page_token": "string"
}

Field

Description

resource_id

string

Required field. ID of the resource to list access policy bindings for.

To get the resource ID, use a corresponding List request.
For example, use the yandex.cloud.resourcemanager.v1.CloudService.List request to get the Cloud resource ID.

The maximum string length in characters is 50.

page_size

int64

The maximum number of results per page that should be returned.
If the number of available results is larger than page_size, the service returns a
ListAccessPolicyBindingsResponse.next_page_token
that can be used to get the next page of results in subsequent list requests.
Default value: 100.

Acceptable values are 0 to 1000, inclusive.

page_token

string

Page token. Set page_token to the
ListAccessPolicyBindingsResponse.next_page_token
returned by a previous list request to get the next page of results.

The maximum string length in characters is 100.

access.ListAccessPolicyBindingsResponseaccess.ListAccessPolicyBindingsResponse

{
  "access_policy_bindings": [
    {
      "access_policy_template_id": "string",
      "parameters": "map<string, string>"
    }
  ],
  "next_page_token": "string"
}

Field

Description

access_policy_bindings[]

AccessPolicyBinding

List of access policy bindings for the specified resource.

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
ListAccessPolicyBindingsRequest.page_size
, use the next_page_token as the value for the
ListAccessPolicyBindingsRequest.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.

AccessPolicyBindingAccessPolicyBinding

Field

Description

access_policy_template_id

string

Required field. ID of the access policy template being applied.

The maximum string length in characters is 50.

parameters

object (map<string, string>)

Was the article helpful?

Previous
UpdateAccessBindings
Next
BindAccessPolicy
© 2025 Direct Cursus Technology L.L.C.