Skip to main content

Overview

User objects represent distinct users that would connect their accounts via Transcrypts 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 required. Users and applicants require both first_name and last_name values when testing for document processing integration.

Endpoints

Available endpoints for user management:

Example Response

From the Create User endpoint:
{
  "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"
}

User Bridge Token

A User bridge token is a temporary value required for loading Transcrypts Bridge for a specific user.

Bridge Token Attributes

AttributeTypeDescription
bridge_tokenstringUnique ID of Bridge Token
tracking_infostringInformation to associate with current user
client_namestringClient name for Transcrypts Bridge
product_typestringIndicates main product type
allowed_productsarrayList of allowed products; only main type if not included
company_mapping_idstringCompany ID to skip search step (see Deeplinking)
access_tokenstringAccess token of existing Link for data refresh

Bridge Token Endpoint

Example Bridge Token Response

{
  "bridge_token": "2f67984a110747d190c39e1022c81837",
  "tracking_info": "any data for tracking current user",
  "client_name": "Transcrypts Demo",
  "product_type": "income",
  "allowed_products": [
    "income",
    "deposit_switch"
  ],
  "company_mapping_id": "99dd17074ac94aa9ace2621d657c7610",
  "access_token": "99dd17074ac94aa9ace2621d657c7610",
  "user_id": "99dd17074ac94aa9ace2621d657c7610"
}