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

# The Users object

> Manage users and user tokens for Truv Bridge with the Users endpoint.

User objects represent distinct users that would connect their accounts via Truv Bridge.

### User Attributes

| Attribute          | Type     | Description                          |
| :----------------- | :------- | :----------------------------------- |
| id                 | string   | Unique ID of user                    |
| external\_user\_id | string   | External user ID                     |
| first\_name        | string   | First name\*                         |
| last\_name         | string   | Last name\*                          |
| email              | string   | User email                           |
| phone              | string   | User phone number                    |
| ssn                | string   | User SSN                             |
| created\_at        | datetime | Timestamp when user was created      |
| updated\_at        | datetime | Timestamp when user was last updated |

<Note>
  Full name is required

  Users and applicants require both `first_name` and `last_name` values when testing for Integrating Document Processing.
</Note>

## Endpoints

The list below contains available endpoints for user management.

* [List all users](/api-reference/users/users_list)
* [Create a user](/api-reference/users/users_create)
* [Retrieve a user](/api-reference/users/users_read)
* [Update a user](/api-reference/users/users_partial_update)
* [Delete a user](/api-reference/users/users_delete)

***

## Example response

View the example object from the `Create User` endpoint below.

```json theme={null}
{
  "id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
  "external_user_id": "12345",
  "first_name": "John",
  "last_name": "Doe",
  "email": "john.doe@example.com",
  "phone": "+14155554193",
  "ssn": "222233333",
  "created_at": "2022-05-04T11:30:00Z",
  "updated_at": "2022-05-04T12:00:00Z"
}
```
