Identity API

SsnResponse

object

Carries a person’s full, unmasked Social Security Number. Returned only by GET /v2/persons/{personId}/ssn; the SSN is masked in all other responses.

personIdstring(uuid)requiredread-only

The unique identifier of the person.

Example:550e8400-e29b-41d4-a716-446655440000

ssnstringrequiredread-only

The full, unmasked Social Security Number (9 digits).

Example:123456789

Example

AssociateFirmRequestV2

object

Identifies the existing firm to associate with the person, and optionally the person’s role in it.

firmIdstring(uuid)required

The unique identifier of the firm to associate.

Example:550e8400-e29b-41d4-a716-446655440000

rolestring

The person’s role in the firm. Defaults to PRINCIPAL when omitted.

Allowed values:PRINCIPALAGENT_FIRM_MANAGERAGENT

Default:PRINCIPAL

Example:PRINCIPAL

Example

PersonFirmV2

object

An association between a person and a firm.

personIdstring(uuid)requiredread-only

The unique identifier of the associated person.

Example:550e8400-e29b-41d4-a716-446655440000

firmIdstring(uuid)requiredread-only

The unique identifier of the associated firm.

Example:660e8400-e29b-41d4-a716-446655440111

rolestringrequired

The person’s role in the firm.

Allowed values:PRINCIPALAGENT_FIRM_MANAGERAGENT

Example:PRINCIPAL

Example

AddressType

string

Type of address

Allowed values:MAILINGBUSINESSPHYSICAL

AddressV2

object
idstring(uuid)requiredread-only

Address identifier.

Example:550e8400-e29b-41d4-a716-446655440000

typestringrequired

Type of address

Allowed values:MAILINGBUSINESSPHYSICAL

addressLine1stringrequired

First line of the street address.

Example:123 Main St

addressLine2string

Second line of the street address (suite, unit, etc.).

Example:Apt 4B

citystringrequired

City.

Example:Denver

statestringrequired

Two-letter US state code.

>= 2 characters<= 2 characters

Example:CO

zipstringrequired

ZIP code in 5-digit or ZIP+4 format.

Match pattern:^\d{5}(-\d{4})?$

Example:80202

countystring

County name.

Example:Denver

countrystringrequired

Country code (ISO alpha-2).

>= 2 characters<= 2 characters

Example:US

moveInDatestring(date)

Date the person moved to this address (YYYY-MM-DD).

Example:2020-01-15

preferredbooleanrequired

Whether this is the person’s preferred address.

Example:true

createdAtstring(date-time)requiredread-only

RFC3339 UTC timestamp when the address was created.

Example:2024-01-15T10:30:00Z

updatedAtstring(date-time)read-only

RFC3339 UTC timestamp when the address was last updated.

Example:2024-01-15T14:45:00Z

Example