Last active
July 26, 2022 19:27
-
-
Save as3k/7fd37bf566cd10e5b9a95c36c0273271 to your computer and use it in GitHub Desktop.
Moretgage funnel POST data
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Result from Refinance flow as json object | |
// NOTE -- PC == Preset choice | |
{ | |
"ready": true, // Boolean | |
"user_is_looking_to": "Refinance", // String - PC | |
"type_of_property": "Primary", // String - PC | |
"type_of_property_to_refinance": "Single Family", // String - PC | |
"zipcode": "12345", // Number | |
"estimated_value_of_property": "120000", // Number | |
"balance_on_first_mortgage": "120", // Number | |
"second_mortgage_or_equity_line": "12000", // Number | |
"cash_out": "12056", // Number | |
"employment_status": "Self-Employed", // String - PC | |
"credit_score": "620 - 719", // String - PC | |
"first_name": "joey", // String | |
"last_name": "baker", // String | |
"email_address": "[email protected]", // String | |
"phone_number": "6199424600" // Number | |
} | |
// Result from Purchase flow as json object | |
{ | |
"ready": true, // Boolean | |
"user_is_looking_to": "Purchase", // String - PC | |
"type_of_property": "Investment", // String - PC | |
"estimated_purchase_price": "12000", // Number | |
"estimated_down_payment": "120", // Number | |
"zipcode": "92154", // Number | |
"first_name": "joey", // String | |
"last_name": "baker", // String | |
"email_address": "[email protected]", // String | |
"phone_number": "1234567899" // Number | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment