Skip to content

Applicant SPII

The Applicant SPII object represents sensitive personally identifiable information for an applicant applying for a lease transaction within the Funnel Leasing system. This includes data such as Social Security Number (SSN), detailed financial information, and employer details. Proper care and security protocols must be followed when accessing or processing this information to comply with privacy regulations.

SPII is encrypted for security purposes. To access decrypted information,
simply make a request to the specified proxy endpoint, providing your
API key as you would for direct API calls. We use VGS (Very Good Proxy)
for encrypting and decrypting sensitive data. The proxy will automatically
return the data in decrypted form.

API
GET https://tntdv44mdst.live.verygoodproxy.com/api/v2/applicants/:id/spii

Attributes

  • Name
    ID
    Type
    integer
    Description
  • Name
    lease_transaction_id
    Type
    integer
    Description
  • Name
    role
    Type
    string
    Description
  • Name
    first_name
    Type
    string
    Description
  • Name
    middle_name
    Type
    string
    Description
  • Name
    last_name
    Type
    string
    Description
  • Name
    suffix
    Type
    string
    Description
  • Name
    email
    Type
    string
    Description
  • Name
    address_street
    Type
    string
    Description
  • Name
    address_line_2
    Type
    string
    Description
  • Name
    address_city
    Type
    string
    Description
  • Name
    address_state
    Type
    string
    Description
  • Name
    address_postal_code
    Type
    string
    Description
  • Name
    ssn
    Type
    string
    Description
  • Name
    date_of_birth
    Type
    string
    Description
  • Name
    financial_data
    Type
    object
    Description
  • Name
    employer
    Type
    object
    Description
Example request payload
{
"id": 564323,
"lease_transaction_id": 347612,
"role": "Primary Applicant",
"first_name": "John",
"middle_name": "Mary",
"last_name": "Doe",
"suffix": "Jr",
"email": "john.doe@gmail.com",
"address_street": "21 Jump St.",
"address_line_2": "Gelato Bar",
"address_city": "New York",
"address_state": "NY",
"address_postal_code": "10001",
"ssn": "123-45-6789",
"date_of_birth": "2003-12-04",
"financial_data": {
"income_total": "10,000.00",
"asset_total": "20,000.00",
"vouchers_total": "30,000.00"
},
"employer": {
"name": "Nestio",
"address_street": "150 W 22nd St",
"address_line_2": "Flr 8",
"address_city": "New York",
"address_state": "NY",
"address_postal_code": "10011"
}
}