> ## Documentation Index
> Fetch the complete documentation index at: https://www.edenai.co/docs/llms.txt
> Use this file to discover all available pages before exploring further.

# Get managegroups

> ``GET /v3/manage/groups`` -- the org's IdP-synced directory groups and their members, ordered
by name for a stable page. ``manage:read``, org-scoped. Read-only in v1 (see module docstring).



## OpenAPI

````yaml https://api.edenai.run/v2/info/splitted-schema/management_api/openapi.json get /manage/groups/
openapi: 3.0.3
info:
  title: Organization Management
  version: '2.0'
  description: Your project description
servers:
  - url: https://api.edenai.run/v3
security: []
paths:
  /manage/groups/:
    get:
      tags:
        - groups
      description: >-
        ``GET /v3/manage/groups`` -- the org's IdP-synced directory groups and
        their members, ordered

        by name for a stable page. ``manage:read``, org-scoped. Read-only in v1
        (see module docstring).
      operationId: manage_groups_list
      parameters:
        - name: limit
          required: false
          in: query
          description: Number of results to return per page.
          schema:
            type: integer
        - name: offset
          required: false
          in: query
          description: The initial index from which to return the results.
          schema:
            type: integer
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/PaginatedManageGroupList'
          description: ''
components:
  schemas:
    PaginatedManageGroupList:
      type: object
      required:
        - count
        - results
      properties:
        count:
          type: integer
          example: 123
        next:
          type: string
          nullable: true
          format: uri
          example: http://api.example.org/accounts/?offset=400&limit=100
        previous:
          type: string
          nullable: true
          format: uri
          example: http://api.example.org/accounts/?offset=200&limit=100
        results:
          type: array
          items:
            $ref: '#/components/schemas/ManageGroup'
    ManageGroup:
      type: object
      description: >-
        A directory-synced group as the management plane exposes it: the stable
        IdP identifiers plus

        the member emails. The internal PK is not exposed; ``external_group_id``
        is the addressable id.
      properties:
        external_group_id:
          type: string
          maxLength: 255
        name:
          type: string
          maxLength: 255
        members:
          type: string
          readOnly: true
      required:
        - external_group_id
        - members
        - name

````