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

# List Organization Members

> List all members of an organization

## Overview

Retrieve a list of all members belonging to an organization.

## Path Parameters

<ParamField path="org_id" type="string" required>
  The unique identifier of the organization
</ParamField>

## Response

Returns an array of member profiles.

<ResponseField name="members" type="array">
  Array of member objects

  <Expandable title="Member object properties">
    <ResponseField name="id" type="string">
      Unique profile identifier (UUID)
    </ResponseField>

    <ResponseField name="name" type="string">
      Member name
    </ResponseField>

    <ResponseField name="email" type="string">
      Email address
    </ResponseField>

    <ResponseField name="phone_number" type="string">
      Phone number
    </ResponseField>

    <ResponseField name="tax_id" type="string">
      RFC (Mexican tax ID)
    </ResponseField>

    <ResponseField name="is_admin" type="boolean">
      Whether the member has admin privileges
    </ResponseField>

    <ResponseField name="created_at" type="string">
      ISO 8601 timestamp of when the member joined
    </ResponseField>
  </Expandable>
</ResponseField>

<RequestExample>
  ```bash cURL theme={null}
  curl -X GET "https://app.usatimbre.com/api/organizations/org_123456/members" \
    -H "Authorization: Bearer tmb_your_api_key_here"
  ```

  ```javascript JavaScript theme={null}
  const response = await fetch('https://app.usatimbre.com/api/organizations/org_123456/members', {
    headers: {
      'Authorization': 'Bearer tmb_your_api_key_here'
    }
  });
  const data = await response.json();
  ```

  ```python Python theme={null}
  import requests

  response = requests.get(
      'https://app.usatimbre.com/api/organizations/org_123456/members',
      headers={'Authorization': 'Bearer tmb_your_api_key_here'}
  )
  data = response.json()
  ```
</RequestExample>

<ResponseExample>
  ```json 200 theme={null}
  {
    "members": [
      {
        "id": "550e8400-e29b-41d4-a716-446655440000",
        "name": "Juan Pérez",
        "email": "juan@example.com",
        "phone_number": "+525512345678",
        "tax_id": "XAXX010101000",
        "is_admin": true,
        "created_at": "2024-01-15T10:30:00Z"
      },
      {
        "id": "550e8400-e29b-41d4-a716-446655440001",
        "name": "María García",
        "email": "maria@example.com",
        "phone_number": "+525598765432",
        "tax_id": "XAXX010101001",
        "is_admin": false,
        "created_at": "2024-01-16T14:00:00Z"
      }
    ]
  }
  ```

  ```json 404 theme={null}
  {
    "error": "Not Found",
    "message": "Organization not found"
  }
  ```
</ResponseExample>
