---
title: "List Users"
description: "Lists all users in the organization."
---

`GET /api/users`

## Response

```json
{
    "id": "user_123",
    "name": "Max Mustermann",
    "email": "max@deinkunde.com",
    "role": "admin",
    "isActive": true,
    "createdAt": "2023-01-01T00:00:00Z"
}
```

