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

# List Organization Members

> Retrieve all members of the organization. Returns each member's user ID, email, first name, and last name. Use the returned user IDs to add members to groups via the group member endpoints.

List all members of your organization. Returns each member's user ID, email, and name.

Use the returned `user_id` values to add members to groups via the [Add Group Member](/api-reference/endpoint/manage-group-member/manage-group-member-add) endpoint.


## OpenAPI

````yaml GET /v1/manage/org/member
openapi: 3.0.3
info:
  title: Requesty Management API
  description: >-
    Requesty Management API for API key management, groups, members, and
    organization settings.
  version: 1.0.0
servers:
  - url: https://api-v2.requesty.ai
    description: Management API endpoint
security:
  - BearerAuth: []
paths:
  /v1/manage/org/member:
    servers:
      - url: https://api-v2.requesty.ai
        description: Management API endpoint
    get:
      summary: List organization members
      description: >-
        Retrieve all members of the organization. Returns each member's user ID,
        email, first name, and last name. Use the returned user IDs to add
        members to groups via the group member endpoints.
      operationId: listOrgMembers
      responses:
        '200':
          description: Successfully retrieved organization members
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GetOrgMembersResponse'
        '400':
          description: Bad request - malformed payload or invalid parameters.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '401':
          description: Unauthorized - missing or empty Authorization header.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '402':
          description: Payment required - organization balance exhausted.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '403':
          description: Forbidden - invalid token or model not in access list.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '404':
          description: Not found - provider/model not supported.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '429':
          description: Rate limit exceeded. Retry after the Retry-After header value.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '500':
          description: Internal server error.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '502':
          description: Bad gateway - upstream provider returned an invalid response.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
components:
  schemas:
    GetOrgMembersResponse:
      type: object
      required:
        - members
      properties:
        members:
          type: array
          items:
            $ref: '#/components/schemas/OrgMember'
          description: List of organization members
    ErrorResponse:
      type: object
      required:
        - error
      properties:
        error:
          type: object
          required:
            - origin
            - message
          properties:
            origin:
              type: string
              enum:
                - router
                - provider
              description: >-
                Whether the error originated from Requesty's router or an
                upstream provider.
            message:
              type: string
              description: Human-readable error description.
    OrgMember:
      type: object
      required:
        - user_id
        - user_email
      properties:
        user_id:
          type: string
          description: Unique identifier of the member
        user_email:
          type: string
          format: email
          description: Email address of the member
        first_name:
          type: string
          description: First name of the member
        last_name:
          type: string
          description: Last name of the member
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer
      description: API key for authentication

````