Coverage

Retrieve rejection reasons

GET
Retrieve a list of valid reasons to reject an applicant, along with descriptions for each reason

Response

This endpoint returns a map from enums to strings
income_too_low
bank_balance_too_low
income_unpredictable
user_account_duplicate
sdb_check_failed
bank_account_linking_error
mla_failed
iddoc_failed
no_checking_or_savings_data
insufficient_bank_history
loan_location_no_license
address_invalid
income_verification_failed
stacking_behavior
ssn_verification_failed
too_many_nsfs
fraud_risk_too_high
has_bankruptcy_history
unable_to_verify_credit_information
credit_file_frozen
processor_suspended
cash_flow_verification_failed
credit_score_too_low

Errors

GET
1curl https://production.pier-finance.com/api/rejection_reasons \
2 -H "Authorization: Bearer <token>"
1{
2 "income_too_low": "Income does not meet requirement\n",
3 "bank_balance_too_low": "Bank account balance is too low\n",
4 "income_unpredictable": "Unable to predict regular pattern of income deposits\n",
5 "user_account_duplicate": "Duplicate account (previously applied for a loan with a different email address)\n",
6 "sdb_check_failed": "State database lending restriction\n",
7 "bank_account_linking_error": "Unable to link to a supported banking institution\n",
8 "mla_failed": "Under the Military Lending Act, loans to military personnel or their spouses and dependents cannot be made if the interest and expenses associated with the loan exceed an annual percentage rate (APR) of 36%. Due to these limits on military-related lending, we can't lend to members of the military or their spouses and dependents. Please feel free to contact us with any questions you may have about this notice!\n",
9 "iddoc_failed": "Unable to verify identification documents\n",
10 "no_checking_or_savings_data": "No data from supported financial institution. Unsupported financial institution is linked\n",
11 "insufficient_bank_history": "Unable to pull enough bank history\n",
12 "loan_location_no_license": "Unable to verify that your permanent residence is in a state\n",
13 "address_invalid": "Unable to verify mailing address\n",
14 "income_verification_failed": "Unable to verify qualified income over a sustained period\n",
15 "stacking_behavior": "Recent deposits and withdrawals detected from other lenders\n",
16 "ssn_verification_failed": "Unable to verify SSN number\n",
17 "too_many_nsfs": "Multiple Returned checks or Insufficient Fund Fees detected\n",
18 "fraud_risk_too_high": "Bank account has been flagged as potential fraud risk\n",
19 "has_bankruptcy_history": "History of bankruptcy\n",
20 "unable_to_verify_credit_information": "Unable to verify credit information\n",
21 "credit_file_frozen": "Credit file is currently frozen\n",
22 "processor_suspended": "Payment processor is unable to authenticate user\n",
23 "cash_flow_verification_failed": "Cash flow analysis - income funds are quickly depleted from bank account after income deposit\n",
24 "credit_score_too_low": "Your credit score does not meet our requirement\n"
25}