Borrowers Endpoints
Applications Endpoints
Loan Agreements Endpoints
Facilities Endpoints
Coverage and Utilities
Coverage and Utilities
Retrieve rejection reasons
GET
/
rejection_reasons
curl --request GET \
--url https://production.pier-finance.com/api/rejection_reasons \
--header 'Authorization: Basic <encoded-value>'
{
"income_too_low": "Income does not meet requirement\n",
"bank_balance_too_low": "Bank account balance is too low\n",
"income_unpredictable": "Unable to predict regular pattern of income deposits\n",
"user_account_duplicate": "Duplicate account (previously applied for a loan with a different email address)\n",
"sdb_check_failed": "State database lending restriction\n",
"bank_account_linking_error": "Unable to link to a supported banking institution\n",
"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",
"iddoc_failed": "Unable to verify identification documents\n",
"no_checking_or_savings_data": "No data from supported financial institution. Unsupported financial institution is linked\n",
"insufficient_bank_history": "Unable to pull enough bank history\n",
"loan_location_no_license": "Unable to verify that your permanent residence is in a state\n",
"address_invalid": "Unable to verify mailing address\n",
"income_verification_failed": "Unable to verify qualified income over a sustained period\n",
"stacking_behavior": "Recent deposits and withdrawals detected from other lenders\n",
"ssn_verification_failed": "Unable to verify SSN number\n",
"too_many_nsfs": "Multiple Returned checks or Insufficient Fund Fees detected\n",
"fraud_risk_too_high": "Bank account has been flagged as potential fraud risk\n",
"bankruptcy": "Outstanding balance from previous loan\n",
"processor_suspended": "Payment processor is unable to authenticate user\n",
"cash_flow_verification_failed": "Cash flow analysis - income funds are quickly depleted from bank account after income deposit\n"
}
Authorizations
Basic authentication header of the form Basic <encoded-value>
, where <encoded-value>
is the base64-encoded string username:password
.
Response
200 - application/json
curl --request GET \
--url https://production.pier-finance.com/api/rejection_reasons \
--header 'Authorization: Basic <encoded-value>'
{
"income_too_low": "Income does not meet requirement\n",
"bank_balance_too_low": "Bank account balance is too low\n",
"income_unpredictable": "Unable to predict regular pattern of income deposits\n",
"user_account_duplicate": "Duplicate account (previously applied for a loan with a different email address)\n",
"sdb_check_failed": "State database lending restriction\n",
"bank_account_linking_error": "Unable to link to a supported banking institution\n",
"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",
"iddoc_failed": "Unable to verify identification documents\n",
"no_checking_or_savings_data": "No data from supported financial institution. Unsupported financial institution is linked\n",
"insufficient_bank_history": "Unable to pull enough bank history\n",
"loan_location_no_license": "Unable to verify that your permanent residence is in a state\n",
"address_invalid": "Unable to verify mailing address\n",
"income_verification_failed": "Unable to verify qualified income over a sustained period\n",
"stacking_behavior": "Recent deposits and withdrawals detected from other lenders\n",
"ssn_verification_failed": "Unable to verify SSN number\n",
"too_many_nsfs": "Multiple Returned checks or Insufficient Fund Fees detected\n",
"fraud_risk_too_high": "Bank account has been flagged as potential fraud risk\n",
"bankruptcy": "Outstanding balance from previous loan\n",
"processor_suspended": "Payment processor is unable to authenticate user\n",
"cash_flow_verification_failed": "Cash flow analysis - income funds are quickly depleted from bank account after income deposit\n"
}