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

# Miembros

> Listar los miembros del equipo de tu organización.

# Miembros

Devuelve todos los miembros del equipo de la organización, ordenados por fecha de incorporación.

<RequestExample>
  ```http theme={null}
  GET https://app.chatnorris.ai/api/v2/members
  Authorization: Bearer <tu_api_key>
  ```
</RequestExample>

**Scope requerido:** ninguno (solo autenticación válida)

***

## Respuesta

```json theme={null}
{
  "status": "success",
  "data": {
    "members": [
      {
        "id": "usr_abc123",
        "email": "nahuel@empresa.com",
        "full_name": "Nahuel Villar",
        "role": "owner",
        "created_at": "2025-01-10T08:00:00.000Z"
      },
      {
        "id": "usr_def456",
        "email": "maria@empresa.com",
        "full_name": "María García",
        "role": "operador",
        "created_at": "2025-03-15T11:00:00.000Z"
      }
    ]
  }
}
```

### Campos de respuesta

| Campo        | Tipo           | Descripción                        |
| ------------ | -------------- | ---------------------------------- |
| `id`         | string         | ID único del miembro               |
| `email`      | string         | Email del miembro                  |
| `full_name`  | string \| null | Nombre completo                    |
| `role`       | string         | Rol: `owner`, `admin` u `operador` |
| `created_at` | string         | Fecha de incorporación (ISO 8601)  |
