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

# Identity

> Identity object attributes and data structure for user personal information

## 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

| Attribute        | Type   | Description                                                |
| ---------------- | ------ | ---------------------------------------------------------- |
| id               | string | Unique user identifier                                     |
| created\_at      | string | ISO 8601 timestamp for initial identity data retrieval     |
| updated\_at      | string | ISO 8601 timestamp for most recent identity data retrieval |
| first\_name      | string | User's first name                                          |
| last\_name       | string | User's last name                                           |
| full\_name       | string | Complete name                                              |
| middle\_initials | string | Middle name initials                                       |
| email            | string | Email address                                              |
| ssn              | string | Social Security Number                                     |
| date\_of\_birth  | date   | Birth date                                                 |
| home\_address    | object | Address information (see Address Object)                   |

### Address Object

| Attribute | Type   | Description        |
| --------- | ------ | ------------------ |
| street    | string | Street address     |
| city      | string | City name          |
| state     | string | State abbreviation |
| zip       | string | Postal code        |
| country   | string | Country identifier |

## Endpoints

* [Retrieve an identity](/income-and-employment/identity-retrieve)

## Example Response

```json theme={null}
{
  "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"
  }
}
```
