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

> ``GET /v3/manage/members`` — the org's active members and owner. Reuses the
dashboard's ``OrganisationUsersSerializer`` and the one ``principals_in_org``
definition, so the management plane and the dashboard cannot disagree on who is a
member. Ordered by email for a stable page across requests.



## OpenAPI

````yaml https://api.edenai.run/v2/info/splitted-schema/management_api/openapi.json get /manage/members/
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/members/:
    get:
      tags:
        - members
      description: >-
        ``GET /v3/manage/members`` — the org's active members and owner. Reuses
        the

        dashboard's ``OrganisationUsersSerializer`` and the one
        ``principals_in_org``

        definition, so the management plane and the dashboard cannot disagree on
        who is a

        member. Ordered by email for a stable page across requests.
      operationId: manage_members_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/PaginatedOrganisationUsersList'
          description: ''
components:
  schemas:
    PaginatedOrganisationUsersList:
      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/OrganisationUsers'
    OrganisationUsers:
      type: object
      properties:
        email:
          type: string
          format: email
          nullable: true
          maxLength: 500
        fullname:
          type: string
          pattern: ^[a-zA-Z\'\- ]+$
          maxLength: 60
        is_confirmed:
          type: boolean
        role:
          type: string
          readOnly: true
        guardrail:
          type: string
          readOnly: true
        effective_rate_limit:
          type: string
          readOnly: true
        tokens:
          type: string
          readOnly: true
        is_org_owner:
          type: boolean
          readOnly: true
        directory_groups:
          type: string
          readOnly: true
      required:
        - directory_groups
        - effective_rate_limit
        - fullname
        - guardrail
        - is_org_owner
        - role
        - tokens

````