View information and details about the user's identity.
Overview
Identity includes details about the user's personal identifiable information, such as the user's name, address, contact information, and other information.. The information about the user is connected to the link_id
of Truv's product types.
Attributes
The values in the table below cover attributes for identity.
Attribute | Type | Description |
---|---|---|
id | string | Unique user ID |
created_at | string | ISO 8601 value for first time retrieving user's identity info |
updated_at | string | ISO 8601 value for last time retrieving user's identity info |
first_name | string | First name |
last_name | string | Last name |
full_name | string | Full name |
middle_initials | string | Middle initials |
string | Email address | |
ssn | string | Social Security Number |
date_of_birth | date | Date of birth |
home_address | object | Address object |
Address object
The values in this table are for the address object of the user.
Attribute | Type | Description |
---|---|---|
street | string | Street |
city | string | City |
state | string | State |
zip | string | Zip |
country | string | Country |
Endpoint
The item below is the available endpoint for Identity.
Example response
The response below is the JSON object for the endpoint.
{
"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": "[email protected]",
"ssn": "221122112",
"date_of_birth": "1992-03-03",
"home_address": {
"zip": "94062",
"city": "Redwood City",
"state": "CA",
"street": "35 Dry Ridge Rd",
"country": "US"
}
}