Submit Loan Application
POST /v2/api/applications
Submits a Loan Application.
Request attributes:
| Property | Required/Optional | Type | Description |
|---|---|---|---|
| Applicant | Required | Object | Applicant information. |
| CoApplicant | Required | Object | Co-Applicant information. Will be null if application has no co-applicant. |
| LoanParameters | Required | Object | Parameters of the application. |
| AssignedUserEmailAddress | Optional | String | Email address to find the User to assign application to. Otherwise defaults to AFI user. |
"Applicant"/"CoApplicant" attributes:
| Property | Required/Optional | Type | Description |
|---|---|---|---|
| IdentificationType | Optional | LegalIdentificationTypeEnum | |
| IdentificationNumber | Optional | String | |
| IsIssueDatePresent | Optional | Boolean | |
| IdentificationIssueDate | Optional | Date | Pairs with IsIssueDatePresent. |
| IsIssueStatePresent | Optional | Boolean | |
| IdentificationState | Optional | IdentificationStateEnum | Pairs with IdentificationState. |
| ExpirationDateUnavailable | Optional | Boolean | Only allowed to be true on StateID. |
| IdentificationExpirationDate | Optional | Date | Pairs with ExpirationDateUnavailable. |
| EmploymentType | Optional | EmploymentTypeEnum | |
| CurrentEmployer | Optional | String | |
| CurrentEmployerPhoneNumber | Optional | String | |
| Occupation | Required | String | |
| EmploymentMonth | Optional | Integer | Required if the EmploymentType is Employed or SelfEmployed. |
| EmploymentYear | Optional | Integer | Required if the EmploymentType is Employed or SelfEmployed. |
| GrossMonthlyIncome | Required | String | |
| AdditionalIncomeSources | Required | Array | When there is no other income: [] or null. |
| ResidenceType | Required | ApplicantResidenceTypeEnum | |
| Payment | Required | Decimal | Monthly payment on Residence. |
| MonthsAtResidence | Required | Integer | |
| YearsAtResidence | Required | Integer | |
| HasCoApplicant | Required | Boolean | |
| HomeValue | Required | Decimal | |
| FirstName | Required | String | |
| MiddleInitial | Required | String | |
| LastName | Required | String | |
| Suffix | Optional | ApplicantSuffixEnum | Must be valid Enum value. |
| Address1 | Required | String | |
| Address2 | Optional | String | |
| City | Required | String | |
| State | Required | String | |
| PostalCode | Required | String | |
| IsInstallationAddressDifferent | Optional | Boolean | |
| InstallationAddress1 | Required/Optional | String | |
| InstallationAddress2 | Optional | String | |
| InstallationCity | Required/Optional | String | |
| InstallationState | Required/Optional | String | |
| InstallationPostalCode | Required/Optional | String | |
| EmailAddress | Optional | String | |
| PrimaryPhone | Required | String | |
| PrimaryPhoneType | Required | PhoneNumberTypeEnum | |
| SecondaryPhone | Optional | String | |
| SecondaryPhoneType | Optional | PhoneNumberTypeEnum | |
| SocialSecurityNumber | Required | String | |
| DateOfBirth | Required | Date | |
| ApplicantRelationship | Optional | CoApplicantTypeEnum | Required if there is a Co-Applicant. |
| Property | Required/Optional | Type | Description |
|---|---|---|---|
| AdditionalIncomeSource | Required | ApplicantIncomeTypeEnum | |
| Description | Optional | String | |
| Source | Required | String | |
| Amount | Required | Decimal | |
| IsNonTaxableIncome | Optional | Boolean |
| Property | Required/Optional | Type | Description |
|---|---|---|---|
| CreditType | Required | CreditTypeEnum | |
| ContractState | Required | StateEnum | |
| ContractLanguage | Required | LanguageTypeEnum | |
| ProductOrService | Required | String | |
| SellingPrice | Required | Decimal | |
| DownPayment | Optional | Decimal | |
| CompletionPayment | Optional | Decimal | |
| DocumentFee | Optional | Decimal | |
| SalesTaxIncluded | Required | Boolean | |
| SalesTax | Optional | Decimal | |
| HasTradeIn | Required | Boolean | |
| TradeInDescription | Optional | String | |
| TradeInAmount | Optional | Decimal | |
| AmountFinanced | Required | Decimal | |
| RepaymentTerms | Required | CreditPaymentTermEnum | |
| PaymentFactor | Required | CreditPaymentFactorEnum | |
| CompletionDate | Optional | Date | |
| DealerId | Required | Long | |
| DealerNumber | Optional | String |
Example request:
{
"Applicant": {
"IdentificationType": "UnitedStatesMilitaryId",
"IdentificationNumber": "1234567890",
"IsIssueDatePresent": true,
"IsIssueStatePresent": true,
"ExpirationDateUnavailable": false,
"IdentificationIssuedDate": "2015-11-15",
"IdentificationExpirationDate": "2027-11-15",
"IdentificationIssueState": null,
"EmploymentType": "Employed",
"CurrentEmployer": "Oscorp",
"CurrentEmployerPhoneNumber": "8230986874",
"Occupation": "Systems Analyst",
"EmploymentMonth": 2,
"EmploymentYear": 1959,
"GrossMonthlyIncome": 26000,
"AdditionalIncomeSources": [
{
"AdditionalIncomeSource": "Other",
"Description": "Unobtainium mining",
"Source": "Pandora",
"Amount": 500000,
"IsNonTaxableIncome": false
}
],
"ResidenceType": "Own",
"Payment": 1,
"HasCoApplicant": true,
"HomeValue": 7984000,
"FirstName": "string",
"MiddleInitial": "s",
"LastName": "BROKERAPI",
"Address1": "string",
"Address2": "string",
"City": "string",
"State": "MN",
"PostalCode": "55414",
"IsInstallationAddressDifferent": true,
"InstallationAddress1": "Address 1",
"InstallationAddress2": "Address 2",
"InstallationCity": "City",
"InstallationState": "NY",
"InstallationPostalCode": "10005",
"EmailAddress": "user@example.com",
"PrimaryPhone": "8231231234",
"PrimaryPhoneType": "Cell",
"SecondaryPhone": null,
"SecondaryPhoneType": null,
"SocialSecurityNumber": "100000105",
"DateOfBirth": "1917-11-15"
},
"CoApplicant": {
"ApplicantRelationship": "Spouse",
"IdentificationType": "StateId",
"IdentificationNumber": "1234567890",
"IsIssueDatePresent": false,
"IsIssueStatePresent": false,
"IdentificationIssuedDate": null,
"IdentificationExpirationDate": "2043-11-15",
"ExpirationDateUnavailable": false,
"IdentificationIssueState": null,
"EmploymentType": "Retired",
"CurrentEmployer": null,
"CurrentEmployerPhoneNumber": null,
"Occupation": null,
"EmploymentMonth": null,
"EmploymentYear": null,
"GrossMonthlyIncome": null,
"AdditionalIncomeSources": [],
"ResidenceType": "Own",
"Payment": 5000,
"HasCoApplicant": true,
"HomeValue": 10000,
"FirstName": "BrokerAPISpouse",
"MiddleInitial": "s",
"LastName": "string",
"Address1": "string",
"Address2": "string",
"City": "string",
"State": "MN",
"PostalCode": "55414",
"EmailAddress": "user@example.com",
"PrimaryPhone": "8231231234",
"PrimaryPhoneType": "Cell",
"SecondaryPhone": "9879879876",
"SecondaryPhoneType": "Home",
"SocialSecurityNumber": "100000104",
"DateOfBirth": "1917-11-15"
},
"LoanParameters": {
"CreditType": "Revolving",
"ContractState": "CA",
"ContractLanguage": "English",
"ProductOrService": "WATERTREAT",
"SellingPrice": 1000,
"DownPayment": 100,
"SalesTaxIncluded": true,
"SalesTax": 1,
"HasTradeIn": false,
"AmountFinanced": 901,
"PaymentFactor": "Two",
"CompletionDate": "2099-11-15",
"DealerId": 9
},
"AssignedUserEmailAddress": "support@aquafinance.com"
}
Example response:
{
"Id": 124254,
"ApplicationNumber": null,
"LoanType": "Revolving",
"Dealer": {
"Id": 9,
"Name": "WEBSITE TEST DEALER - ALL VERTICALS",
"DealerNumber": "000123.002",
"EntityId": "43953",
"IsOpenOnSaturday": true,
"IsRetailDealer": false,
"Address": {
"SerializationVersion": 1,
"Address1": "1 CORPORATE DR STE 300",
"Address2": "",
"City": "WAUSAU",
"State": "WI",
"PostalCode": "54401"
},
"PhoneNumber": {
"SerializationVersion": 1,
"PhoneNumberType": "Home",
"AreaCode": "800",
"CentralOfficeCode": "234",
"StationNumber": "3663",
"IsPrimary": true
},
"MajorProductLine": "HOMEIMPROV",
"Nickname": null,
"AffiliateName": null,
"NextAttestationDate": "2099-01-01T18:00:00",
"AttestWindowDays": 60,
"IncludeLcc": false,
"Products": [
{
"SerializationVersion": 1,
"Name": "ALARM SYSTEM",
"Code": "ALARM",
"IsHomeImprovement": false,
"IsMajorProduct": false
},
{
"SerializationVersion": 1,
"Name": "Heating/Air Conditioning",
"Code": "HVAC",
"IsHomeImprovement": true,
"IsMajorProduct": true
},
{
"SerializationVersion": 1,
"Name": "Pool/Spa/Sauna",
"Code": "POOLSAUNA",
"IsHomeImprovement": true,
"IsMajorProduct": false
},
{
"SerializationVersion": 1,
"Name": "Remodeling/Addition",
"Code": "REMODELING",
"IsHomeImprovement": true,
"IsMajorProduct": false
},
{
"SerializationVersion": 1,
"Name": "Siding",
"Code": "SIDING",
"IsHomeImprovement": true,
"IsMajorProduct": false
},
{
"SerializationVersion": 1,
"Name": "Vacuum Cleaner",
"Code": "VACUUM",
"IsHomeImprovement": false,
"IsMajorProduct": false
},
{
"SerializationVersion": 1,
"Name": "Water Treatment System",
"Code": "WATERTREAT",
"IsHomeImprovement": false,
"IsMajorProduct": false
},
{
"SerializationVersion": 1,
"Name": "Windows",
"Code": "WINDOWS",
"IsHomeImprovement": true,
"IsMajorProduct": false
}
],
"Options": [
{
"SerializationVersion": 1,
"Code": "10.99PAYR",
"Description": "10.99PAYRATE"
},
{
"SerializationVersion": 1,
"Code": "180APSTOVR",
"Description": "APPSTATUSDAYSOVERRIDE=180"
},
{
"SerializationVersion": 1,
"Code": "8.9%+REV",
"Description": "8.9+PFREVPROMO"
},
{
"SerializationVersion": 1,
"Code": "8.9PAYRATE",
"Description": "8.9PAYRATE"
},
{
"SerializationVersion": 1,
"Code": "9.9PAYRATE",
"Description": "9.9PAYRATE"
},
{
"SerializationVersion": 1,
"Code": "HIMPSTND",
"Description": "HIMPSTNDPROMO"
},
{
"SerializationVersion": 1,
"Code": "PLATINM675",
"Description": "PLATINUMBASE=675"
},
{
"SerializationVersion": 1,
"Code": "WTRTRMTSTD",
"Description": "WTRTRTMNTSTNDPROMO"
}
],
"Verticals": [
{
"SerializationVersion": 1,
"Value": "MISC"
},
{
"SerializationVersion": 1,
"Value": "HOMEIMPROV"
},
{
"SerializationVersion": 1,
"Value": "VAC"
},
{
"SerializationVersion": 1,
"Value": "WATERTREAT"
}
],
"SalesRepresentatives": [
{
"SerializationVersion": 1,
"Initials": "HSE",
"FirstName": "HOUSE",
"LastName": "ACCOUNTS",
"Title": "",
"PhoneNumber": "",
"Email": "house@aquafinance.com",
"PhotoUrl": "/media/1216/team-awesome-sauce_2.jpg",
"SalesRepresentativeType": "SR",
"IsInternalTeam": false
},
{
"SerializationVersion": 1,
"Initials": "KMR",
"FirstName": "KAELEIGH",
"LastName": "ROESLER",
"Title": "Technical Specialist",
"PhoneNumber": "8002343663",
"Email": "KROESLER@AQUAFINANCE.COM",
"PhotoUrl": "/media/1216/team-awesome-sauce_2.jpg",
"SalesRepresentativeType": "DSR",
"IsInternalTeam": false
}
]
},
"Applicant": {
"Id": 132918,
"FirstName": "STRING",
"MiddleInitial": "S",
"LastName": "BROKERAPI",
"EmailAddress": "user@example.com",
"DateOfBirth": "1917-11-15T00:00:00",
"SocialSecurityNumber": "100000105",
"MonthlyIncome": 26000.0,
"CoApplicantType": null,
"LoanApplicationId": 124254,
"IsPrimary": true,
"Identification": {
"SerializationVersion": 1,
"LegalIdentificationType": "UnitedStatesMilitaryId",
"Number": "1234567890",
"ExpirationDate": "2027-11-15T00:00:00Z",
"IssueDate": "2015-11-15T00:00:00Z",
"IssueDateIsPresentOnId": true,
"StateOfIssuance": null,
"IssuanceStateIsPresentOnId": true,
"ExpirationDateUnavailable": false
},
"EmploymentHistory": [
{
"SerializationVersion": 1,
"Name": "Oscorp",
"PhoneNumber": {
"SerializationVersion": 1,
"PhoneNumberType": "Work",
"AreaCode": "823",
"CentralOfficeCode": "098",
"StationNumber": "6874",
"IsPrimary": true
},
"Title": "Systems Analyst",
"EmploymentType": "Employed",
"StartDate": "1959-02-01T00:00:00Z"
}
],
"Incomes": [
{
"SerializationVersion": 1,
"Description": "Unobtainium mining",
"Amount": 500000.0,
"IncomeType": "Other",
"IsNonTaxableIncome": false
}
],
"PhoneNumbers": [
{
"SerializationVersion": 1,
"PhoneNumberType": "Cell",
"AreaCode": "823",
"CentralOfficeCode": "123",
"StationNumber": "1234",
"IsPrimary": true
}
],
"Residences": [
{
"SerializationVersion": 1,
"ResidenceType": "Own",
"MonthlyPaymentAmount": 1.0,
"PropertyValue": 100000.0
}
],
"Address": {
"SerializationVersion": 1,
"Address1": "STRING",
"Address2": "STRING",
"City": "STRING",
"State": "MN",
"PostalCode": "55414"
},
"Is65OrOlder": true
},
"CoApplicant": {
"Id": 132919,
"FirstName": "BROKERAPISPOUSE",
"MiddleInitial": "S",
"LastName": "STRING",
"EmailAddress": "user@example.com",
"DateOfBirth": "1917-11-15T00:00:00",
"SocialSecurityNumber": "100000104",
"MonthlyIncome": null,
"CoApplicantType": "Spouse",
"LoanApplicationId": 124254,
"IsPrimary": false,
"Identification": {
"SerializationVersion": 1,
"LegalIdentificationType": "StateId",
"Number": "1234567890",
"ExpirationDate": "2043-11-15T00:00:00Z",
"IssueDate": null,
"IssueDateIsPresentOnId": false,
"StateOfIssuance": null,
"IssuanceStateIsPresentOnId": false,
"ExpirationDateUnavailable": false
},
"EmploymentHistory": [
{
"SerializationVersion": 1,
"Name": null,
"PhoneNumber": null,
"Title": null,
"EmploymentType": "Retired",
"StartDate": "2018-08-02T00:00:00Z"
}
],
"Incomes": [],
"PhoneNumbers": [
{
"SerializationVersion": 1,
"PhoneNumberType": "Cell",
"AreaCode": "823",
"CentralOfficeCode": "123",
"StationNumber": "1234",
"IsPrimary": true
},
{
"SerializationVersion": 1,
"PhoneNumberType": "Home",
"AreaCode": "987",
"CentralOfficeCode": "987",
"StationNumber": "9876",
"IsPrimary": false
}
],
"Residences": [
{
"SerializationVersion": 1,
"ResidenceType": "Own",
"MonthlyPaymentAmount": 5000.0,
"PropertyValue": 10000.0
}
],
"Address": {
"SerializationVersion": 1,
"Address1": "STRING",
"Address2": "STRING",
"City": "STRING",
"State": "MN",
"PostalCode": "55414"
},
"Is65OrOlder": true
},
"Context": {
"SerializationVersion": 1,
"State": "CA",
"Language": {
"LanguageType": "English",
"Name": "en-US",
"Id": 1
}
},
"FinancialInformation": {
"SerializationVersion": 1,
"ProductCode": "WATERTREAT",
"SellingPrice": 1000.0,
"DownPayment": 100.0,
"DocumentFee": 0.0,
"CompletionPayment": 0.0,
"SalesTax": {
"SerializationVersion": 1,
"IsIncluded": true,
"TaxAmount": 1.0
},
"TotalAmountFinanced": 901.0
},
"TradeIns": [],
"Terms": {
"SerializationVersion": 1,
"CreditType": "Revolving",
"PaymentTerm": null,
"PaymentFactor": "Two",
"PaymentFactorReal": 0.02,
"CompletionDate": "2022-08-02T11:21:39.9913295Z",
"TentativeCompletionDate": "2099-11-15T00:00:00"
},
"CustomDealerInformation": null,
"SubmitNumber": "B000124254",
"AssignedUserId": 23,
"AssignedSalesRepresentativeName": null,
"Status": "Processing",
"CreateDateUtc": "2022-08-02T11:21:39.943",
"ModifyDateUtc": "2022-08-02T11:21:39.943",
"DeleteDateUtc": null,
"IsActive": false,
"HistoryItems": [],
"Events": [],
"Content": null
}
Get Application Status
GET /v2/api/applications/status/{applicationId}
Gets the status of a specific application.
Request URL query parameters:
| Property | Required/Optional | Type | Description |
|---|---|---|---|
| applicationId | Required | Long | Valid application Id that user has access to. |
Example response:
{
"LoanApplicationId": 123,
"LoanApplicationNumber": 123456789,
"LoanApplicationStatus": "Approved", // LoanApplicationStatusEnum
"DealerId": 1,
"AssignedToUserId": 1,
"Messages": [
{
"SerializationVersion": 1,
"MessageType": "Hint",
"IsMet": false,
"Label": "Additional Messages ",
"Text": "Example Message."
},
{
"SerializationVersion": 1,
"MessageType": "Hint",
"IsMet": false,
"Label": "Additional Messages ",
"Text": "Thank You for your Business!!"
}
],
"DispositionCode": null,
"BuyRate": "100.00%",
"AmountFinanced": 2700,
"RTCDate": "2020-10-22T00:00:00",
"ProjectNumber": "123abc",
"RiskTier": 1,
"LongApplicationStatus":"Paperwork Received"
}
GET /v2/api/applications/statuses-since/{timestamp}
Gets the statuses of all applications that have been updated since a specific date and time.
Request URL query parameters:
| Property | Required/Optional | Type | Description |
|---|---|---|---|
| timestamp | Required | DateTime | Date and time. |
Example response:
[
{
"LoanApplicationId": 123,
"LoanApplicationNumber": 123456789,
"LoanApplicationStatus": "Approved", // LoanApplicationStatusEnum
"DealerId": 1,
"AssignedToUserId": 1,
"Messages": [
{
"SerializationVersion": 1,
"MessageType": "Condition",
"IsMet": false,
"Label": "Additional Messages ",
"Text": "Thank You for your Business!!"
},
{
"SerializationVersion": 1,
"MessageType": "Hint",
"IsMet": false,
"Label": "Additional Messages ",
"Text": "Thank You for your Business!!"
}
],
"DispositionCode": null,
"BuyRate": "100.00%",
"AmountFinanced": 2700,
"RTCDate": "2020-10-22T00:00:00",
"LongApplicationStatus":"Paperwork Received"
},
//...
]
Loan Application Detail
GET /v2/api/applications/detail/{applicationId:long}
Gets the loan application detail for the specified application.
Request URL query parameters:
| Property | Required/Optional | Type | Description |
|---|---|---|---|
| applicationId | Required | Long | Valid application Id that user has access to. |
Example response:
{
"Content": null,
"Messages": [
{
"SerializationVersion": 1,
"MessageType": "Hint",
"IsMet": false,
"Label": "Additional Messages ",
"Text": "ACH REMINDER: A completed customer AUTO-PAY Form earns you a 2% BONUS paid on all loans (maximum of $200). Voided check and completed Customer AUTO-PAY Form REQUIRED at time of funding! Bonus to be paid regardless of bid amount (can exceed 100%)."
},
{
"SerializationVersion": 1,
"MessageType": "Hint",
"IsMet": false,
"Label": "Additional Messages ",
"Text": "Call 1-800-234-3663 #4 X6904 or 6098 or 6096 with questions.\n Thank you for your Business!!"
}
],
"DispositionCode": null,
"BuyRate": "100.00%",
"HistoryItems": [
{
"Message": "Application reassigned to Test User2",
"Date": "2022-04-01T14:10:03.51"
},
{
"Message": "Application reassigned to Test User1",
"Date": "2022-04-01T14:10:38.033"
},
{
"Message": "Application submitted by Test User",
"Date": "2022-04-04T12:06:24.69"
},
{
"Message": "Credit application created by Test User",
"Date": "2022-04-04T12:06:24.72"
}
],
"Signatures": [
{
"SignatureInformation": [
{
"SigneeType": "Applicant",
"DateSent": null,
"DateSigned": null,
"EmailAddress": "test@test.com",
"AccessCode": null,
"Reviewed": null
},
{
"SigneeType": "CoApplicant",
"DateSent": null,
"DateSigned": null,
"EmailAddress": "test@test.com",
"AccessCode": null,
"Reviewed": null
},
{
"SigneeType": "Dealer",
"DateSent": null,
"DateSigned": null,
"EmailAddress": "test@test.com",
"AccessCode": "000123.000PC",
"Reviewed": null
}
],
"SignatureType": "FULL"
}
],
"Id": 109654,
"ApplicationNumber": 1111111344,
"LoanType": "ClosedEnd",
"Dealer": {
"Id": 15,
"Name": "HOME IMPROVEMENT ORBIT TEST FILE",
"DealerNumber": "543210.000",
"EntityId": "100855",
"IsOpenOnSaturday": true,
"IsRetailDealer": false,
"Address": {
"SerializationVersion": 1,
"Address1": "1 CORPORATE DRIVE STE 300",
"Address2": "",
"City": "WAUSAU",
"State": "WI",
"PostalCode": "54401"
},
"PhoneNumber": {
"SerializationVersion": 1,
"PhoneNumberType": "Home",
"AreaCode": "715",
"CentralOfficeCode": "555",
"StationNumber": "5555",
"IsPrimary": true
},
"MajorProductLine": "HOMEIMPROV",
"Nickname": null,
"AffiliateName": null,
"NextAttestationDate": "2099-01-01T00:00:00",
"AttestWindowDays": 60,
"IncludeLcc": false,
"Status": "Approved",
"Products": [
{
"SerializationVersion": 1,
"Name": "Remodeling/Addition",
"Code": "REMODELING",
"IsHomeImprovement": true,
"IsMajorProduct": false
},
{
"SerializationVersion": 1,
"Name": "Doors",
"Code": "DOORS",
"IsHomeImprovement": true,
"IsMajorProduct": false
},
{
"SerializationVersion": 1,
"Name": "Roof",
"Code": "ROOF",
"IsHomeImprovement": true,
"IsMajorProduct": false
}
],
"Options": [
{
"SerializationVersion": 1,
"Code": "180APSTOVR",
"Description": "APPSTATUSDAYSOVERRIDE=180"
},
{
"SerializationVersion": 1,
"Code": "HIMPSTND",
"Description": "HIMPSTNDPROMO"
},
{
"SerializationVersion": 1,
"Code": "PLATINM650",
"Description": "PLATINUMBASE=650"
}
],
"Verticals": [
{
"SerializationVersion": 1,
"Value": "HOMEIMPROV"
}
],
"SalesRepresentatives": [
{
"SerializationVersion": 1,
"Initials": "TSR",
"FirstName": "Test",
"LastName": "SalesRep",
"Title": "Sales Rep",
"PhoneNumber": "7155555555",
"Email": "testsalesrep@aquafinance.com",
"PhotoUrl": null,
"SalesRepresentativeType": "SR",
"IsInternalTeam": false
},
{
"SerializationVersion": 1,
"Initials": "TSU",
"FirstName": "Test",
"LastName": "SuperUser",
"Title": "Account Manager",
"PhoneNumber": "5555555555",
"Email": "testsuperuser@AQUAFINANCE.COM",
"PhotoUrl": null,
"SalesRepresentativeType": "DSR",
"IsInternalTeam": true
}
]
},
"Applicant": {
"Id": 114310,
"FirstName": "TEST",
"MiddleInitial": null,
"LastName": "TESTER",
"EmailAddress": "test@test.com",
"DateOfBirth": "2000-04-01T14:09:39.9204559",
"SocialSecurityNumber": "XXX-XX-0103",
"MonthlyIncome": 1000000.0,
"CoApplicantType": null,
"LoanApplicationId": 109654,
"IsPrimary": true,
"FicoScore": null,
"Suffix": "SR",
"Identification": {
"SerializationVersion": 1,
"LegalIdentificationType": "DriversLicense",
"Number": "1234567890",
"ExpirationDate": "2023-01-01T00:00:00Z",
"IssueDate": "2019-01-01T00:00:00Z",
"IssueDateIsPresentOnId": true,
"StateOfIssuance": "MN",
"IssuanceStateIsPresentOnId": true,
"ExpirationDateUnavailable": false
},
"EmploymentHistory": [
{
"SerializationVersion": 1,
"Name": "Aqua Finance",
"PhoneNumber": {
"SerializationVersion": 1,
"PhoneNumberType": "Work",
"AreaCode": "999",
"CentralOfficeCode": "123",
"StationNumber": "4567",
"IsPrimary": true
},
"Title": "Automation",
"EmploymentType": "Employed",
"StartDate": "2019-01-01T06:00:00Z"
}
],
"Incomes": [],
"PhoneNumbers": [
{
"SerializationVersion": 1,
"PhoneNumberType": "Cell",
"AreaCode": "999",
"CentralOfficeCode": "123",
"StationNumber": "4567",
"IsPrimary": true
}
],
"Residences": [
{
"SerializationVersion": 1,
"ResidenceType": "Own",
"MonthlyPaymentAmount": 2000.0,
"PropertyValue": 200000.0,
"MonthsAt": 2,
"YearsAt": 2
}
],
"Address": {
"SerializationVersion": 1,
"Address1": "1 Corporate Dr",
"Address2": "Apt 123",
"City": "Wausau",
"State": "WI",
"PostalCode": "54401"
},
"Is65OrOlder": false
},
"CoApplicant": null,
"Context": {
"SerializationVersion": 1,
"State": "AL",
"Language": {
"LanguageType": "English",
"Name": "en-US",
"Id": 1
}
},
"FinancialInformation": {
"SerializationVersion": 1,
"ProductCode": "WATERTREAT",
"SellingPrice": 10000.0,
"DownPayment": 1000.0,
"DocumentFee": null,
"CompletionPayment": 0.0,
"SalesTax": {
"SerializationVersion": 1,
"IsIncluded": false,
"TaxAmount": null
},
"TotalAmountFinanced": 9000.0
},
"TradeIns": [],
"Terms": {
"SerializationVersion": 1,
"CreditType": "ClosedEnd",
"PaymentTerm": "TwentyFourMonths",
"PaymentFactor": null,
"PaymentFactorReal": null,
"CompletionDate": "2022-04-12T00:00:00",
"TentativeCompletionDate": "2022-04-06T00:00:00"
},
"CustomDealerInformation": {
"SerializationVersion": 1,
"SourceDealerId": 99,
"Name": "HOME IMPROVEMENT ORBIT TEST FILE",
"Address": {
"SerializationVersion": 1,
"Address1": "1 CORPORATE DRIVE STE 300",
"Address2": "",
"City": "WAUSAU",
"State": "WI",
"PostalCode": "54401"
},
"Phone": {
"SerializationVersion": 1,
"PhoneNumberType": "Home",
"AreaCode": "715",
"CentralOfficeCode": "555",
"StationNumber": "5555",
"IsPrimary": true
},
"IsOpenSaturday": false
},
"SubmitNumber": "E000109654",
"AssignedUserId": 9,
"AssignedSalesRepresentativeName": null,
"Status": "Approved",
"LongApplicationStatus":"Paperwork Received",
"CreateDateUtc": "2022-04-01T14:09:39.92",
"ModifyDateUtc": "2022-04-12T21:31:55.24",
"DeleteDateUtc": null,
"IsActive": false,
"RtcDate": "2022-04-19T21:31:55.24",
"RiskTier": 1,
"OriginalCreditType": null,
"ProjectNumber": "123abc",
"Events": []
}