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 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
  • Pricing
  • Customer Stories
  • Documentation
  • Blog
© 2025 Direct Cursus Technology L.L.C.
Yandex Identity Hub
  • Access management
  • Pricing policy
  • Terraform reference
    • Authentication
      • Overview
        • Overview
        • Get
        • ResolveExternal
        • List
        • ListExternal
        • Create
        • CreateExternal
        • Update
        • ConvertToExternal
        • ConvertAllToBasic
        • Delete
        • ListOperations
        • ListMembers
        • UpdateMembers
        • ListAccessBindings
        • SetAccessBindings
        • UpdateAccessBindings
        • ListEffective
  • Audit Trails events
  • Release notes

In this article:

  • gRPC request
  • ListEffectiveRequest
  • ListEffectiveResponse
  • GroupMembershipInfo
  1. API reference
  2. gRPC
  3. Group
  4. ListEffective

Identity Hub API, gRPC: GroupService.ListEffective

Written by
Yandex Cloud
Updated at October 3, 2025
  • gRPC request
  • ListEffectiveRequest
  • ListEffectiveResponse
  • GroupMembershipInfo

Returns groups that the subject belongs to within a specific organization.

gRPC requestgRPC request

rpc ListEffective (ListEffectiveRequest) returns (ListEffectiveResponse)

ListEffectiveRequestListEffectiveRequest

{
  "subject_id": "string",
  "organization_id": "string",
  "page_size": "int64",
  "page_token": "string",
  "filter": "string"
}

Field

Description

subject_id

string

Required field. ID of the subject to list groups for.

organization_id

string

The ID of the organization to scope the group search to.
If omitted and the subject belongs to a single organization,
that organization's ID will be used automatically.

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 ListEffectiveResponse.next_page_token
that can be used to get the next page of results in subsequent list requests.
Acceptable values are 0 to 1000, inclusive. Default value: 100.

page_token

string

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

filter

string

A filter expression that filters resources listed in the response.
The expression supports the following operations:

  • = for exact match: name = 'example-name'
  • IN for multiple values: id IN ('id1', 'id2')
  • contains for domain substring search: name contains 'example'
  • AND for combining conditions: name contains 'my-group' AND name contains 'name'

Available fields for filtering:

  • id - group ID
  • name - group name

Must be 1-1000 characters long.

ListEffectiveResponseListEffectiveResponse

{
  "group_membership_info": [
    {
      "group_id": "string",
      "group_name": "string"
    }
  ],
  "next_page_token": "string"
}

Field

Description

group_membership_info[]

GroupMembershipInfo

List of group membership information.
Contains groups where the specified subject is a member.

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

GroupMembershipInfoGroupMembershipInfo

Field

Description

group_id

string

ID of the group the subject is a member of.

group_name

string

Name of the group the subject is a member of.

Was the article helpful?

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