# The User object

> Attributes of a BloomText User and the endpoints that return it.

Source: https://www.bloomtext.com/developers/api/reference/user-object/

Members of your organization.

### Attributes

- `id` (UUID, required): Unique ID of the user.

- `name` (string, required): Display name.

- `role` (string, required): The user's role in the organization.

### Endpoints

| Method | Path | Endpoint |
| --- | --- | --- |
| GET | `/users` | [List users](https://www.bloomtext.com/developers/api/reference/list-users/) |
| GET | `/users/{userId}` | [Retrieve a user](https://www.bloomtext.com/developers/api/reference/get-user/) |

```json filename="The User object"
{
  "id": "8b9c2d2f-6b1a-44f4-a7b1-0d6d3f2d6f55",
  "name": "Jordan Lee",
  "role": "member"
}
```
