Skip to main content

Overview

The Identity endpoint provides access to user personal identifiable information including names, addresses, contact details, and other identity-related data. This information is connected to the link_id within Transcrypts’s product ecosystem.

Attributes

AttributeTypeDescription
idstringUnique user identifier
created_atstringISO 8601 timestamp for initial identity data retrieval
updated_atstringISO 8601 timestamp for most recent identity data retrieval
first_namestringUser’s first name
last_namestringUser’s last name
full_namestringComplete name
middle_initialsstringMiddle name initials
emailstringEmail address
ssnstringSocial Security Number
date_of_birthdateBirth date
home_addressobjectAddress information (see Address Object)

Address Object

AttributeTypeDescription
streetstringStreet address
citystringCity name
statestringState abbreviation
zipstringPostal code
countrystringCountry identifier

Endpoints

Example Response

{
  "id": "710097b33ec14f898df3644b563430e1",
  "created_at": "2022-08-10T09:30:48.520089Z",
  "updated_at": "2022-08-10T09:30:48.520114Z",
  "first_name": "John",
  "last_name": "Doe",
  "full_name": "John Doe",
  "middle_initials": null,
  "email": "john.doe@gmail.com",
  "ssn": "221122112",
  "date_of_birth": "1992-03-03",
  "home_address": {
    "zip": "94062",
    "city": "Redwood City",
    "state": "CA",
    "street": "35 Dry Ridge Rd",
    "country": "US"
  }
}