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

# List Members

> Lists all members of the organization with their roles. User must be a member to view.

Lists all members of an organization with their roles and user details.

## Permissions

User must be a **member** of the organization.

## Response

Returns an array of members with:

* Member ID and role (owner, admin, member)
* User details (id, email, name)
* Membership timestamps (joined date)

## Example

```bash theme={null}
curl -X GET http://localhost:3001/api/organizations/550e8400-e29b-41d4-a716-446655440000/members \
  -H "Authorization: Bearer <token>"
```

## Use Cases

* Display team members in organization dashboard
* Show member list for access control management
* Export member data for reporting


## OpenAPI

````yaml GET /organizations/{id}/members
openapi: 3.1.0
info:
  title: Timbrix API
  description: >-
    REST API with OAuth2 server for managing organizations, members, and
    webhooks
  version: '1.0'
  contact: {}
servers:
  - url: http://sandbox.mintlify.com
    description: Sandbox environment
  - url: http://localhost:3001/api
    description: Local development
security: []
tags:
  - name: organizations
    description: Organization management endpoints
  - name: oauth
    description: OAuth2 authentication and authorization
  - name: webhooks
    description: Webhook configuration and delivery
  - name: users
    description: User information endpoints
  - name: api-keys
    description: API Keys management and validation
paths:
  /organizations/{id}/members:
    get:
      tags:
        - organizations
      summary: Get organization members
      description: >-
        Lists all members of the organization with their roles. User must be a
        member to view.
      operationId: OrganizationsController_getMembers
      parameters:
        - name: id
          required: true
          in: path
          schema:
            type: string
      responses:
        '200':
          description: Members list retrieved successfully with user details and roles.
        '401':
          description: Authentication required. Provide a valid bearer token.
        '403':
          description: Access denied. User is not a member of this organization.
        '404':
          description: Organization not found with the provided ID.
      security:
        - bearer: []
components:
  securitySchemes:
    bearer:
      scheme: bearer
      bearerFormat: JWT
      type: http

````