Skip to main content
User objects represent distinct users that would connect their accounts via Truv Bridge.

User Attributes

AttributeTypeDescription
idstringUnique ID of user
external_user_idstringExternal user ID
first_namestringFirst name*
last_namestringLast name*
emailstringUser email
phonestringUser phone number
ssnstringUser SSN
created_atdatetimeTimestamp when user was created
updated_atdatetimeTimestamp when user was last updated
Full name is requiredUsers and applicants require both first_name and last_name values when testing for Integrating Document Processing.

Endpoints

The list below contains available endpoints for user management.

Example response

View the example object from the Create User endpoint below.
{
  "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"
}