> For the complete documentation index, see [llms.txt](https://docketwise.gitbook.io/docketwise-api-docs/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docketwise.gitbook.io/docketwise-api-docs/users.md).

# Users

### Users#index

Retrieves all firm users

```
GET /users
```

**Response:**

Returns a 200 OK with an array of users:

```
[
    {
        "id": 1,
        "email": "example@example.com",
        "created_at": "2019-08-22T21:27:00.253-05:00",
        "updated_at": "2019-08-22T21:27:00.253-05:00",
        "attorney_profile": {
            "id": 1,
            "first_name": "Example",
            "last_name": "Example"
        }
    }
]
```
