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:

  • HTTP request
  • Query parameters
  • Response
  • GroupMembershipInfo
  1. API reference
  2. REST
  3. Group
  4. ListEffective

Identity Hub API, REST: Group.ListEffective

Written by
Yandex Cloud
Updated at October 3, 2025
  • HTTP request
  • Query parameters
  • Response
  • GroupMembershipInfo

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

HTTP requestHTTP request

GET https://organization-manager.api.cloud.yandex.net/organization-manager/v1/groups:listEffective

Query parametersQuery parameters

Field

Description

subjectId

string

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

organizationId

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.

pageSize

string (int64)

The maximum number of results per page to return. If the number of available
results is larger than pageSize, the service returns a ListEffectiveResponse.nextPageToken
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.

pageToken

string

Page token. Set pageToken
to the ListEffectiveResponse.nextPageToken
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.

ResponseResponse

HTTP Code: 200 - OK

{
  "groupMembershipInfo": [
    {
      "groupId": "string",
      "groupName": "string"
    }
  ],
  "nextPageToken": "string"
}

Field

Description

groupMembershipInfo[]

GroupMembershipInfo

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

nextPageToken

string

This token allows you to get the next page of results for list requests. If the number of results
is larger than ListEffectiveRequest.pageSize, use the nextPageToken as the value
for the ListEffectiveRequest.pageToken query parameter in the next list request.
Each subsequent list request will have its own nextPageToken to continue paging through the results.

GroupMembershipInfoGroupMembershipInfo

Field

Description

groupId

string

ID of the group the subject is a member of.

groupName

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.