Skip to content

Instantly share code, notes, and snippets.

@as3k
Last active July 26, 2022 19:27
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save as3k/7fd37bf566cd10e5b9a95c36c0273271 to your computer and use it in GitHub Desktop.
Save as3k/7fd37bf566cd10e5b9a95c36c0273271 to your computer and use it in GitHub Desktop.
Moretgage funnel POST data
// 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": "baker@email.com", // 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": "baker@email.com", // String
"phone_number": "1234567899" // Number
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment