> ## 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.

# Retrieve a group

> Returns one group of the organization by its identity-provider id, with the emails of its active members. A group that belongs to another organization returns 404. Requires the `manage:read` scope.



## OpenAPI

````yaml https://api.edenai.run/v2/info/splitted-schema/management_api/openapi.json get /v3/manage/groups/{external_group_id}/
openapi: 3.0.3
info:
  title: Organization Management
  version: '2.0'
  description: Your project description
servers:
  - url: https://api.edenai.run
security: []
paths:
  /v3/manage/groups/{external_group_id}/:
    get:
      tags:
        - Groups
      summary: Retrieve a group
      description: >-
        Returns one group of the organization by its identity-provider id, with
        the emails of its active members. A group that belongs to another
        organization returns 404. Requires the `manage:read` scope.
      operationId: manage_groups_retrieve
      parameters:
        - in: path
          name: external_group_id
          schema:
            type: string
          required: true
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ManageGroup'
          description: ''
      security:
        - ManagementKeyAuth: []
components:
  schemas:
    ManageGroup:
      type: object
      description: >-
        A group synced from your identity provider. `external_group_id` is the
        group's id in the

        identity provider and the identifier used in
        `/manage/groups/{external_group_id}` URLs;

        `members` lists the emails of the group's active members.
      properties:
        external_group_id:
          type: string
          maxLength: 255
        name:
          type: string
          maxLength: 255
        members:
          type: array
          items:
            type: string
            format: email
          readOnly: true
      required:
        - external_group_id
        - members
        - name
  securitySchemes:
    ManagementKeyAuth:
      type: http
      scheme: bearer
      bearerFormat: opaque
      description: >-
        A management key (created from the organization dashboard or with `POST
        /v3/manage/auth-keys`), sent as `Authorization: Bearer
        <management_key>`. Inference API keys (`sk-eden...`) are not accepted on
        these endpoints.

````