- Consumer_Soft_Pull_Request
Overview
This API allows external vendors to initiate a soft credit pull for consumers by providing the required data elements. The API response will return either:
- Offers with loan product(s) details, or
- No Offers, which may trigger an Adverse Action Notice (AAN) email to the consumer.
Requirements
- Authentication (username and password) is required.
- Sponsor ID is determined by the authentication credentials.
- Callback URLs must use Basic Auth authentication. Clients must implement Basic Auth for callback URLs and provide credentials to Momnt.
- API requests will only be processed if the merchant's status is Active.
ID of the user in the partner system making the application soft pull request.
The identifier in the partner system for this loan application.
Loan Amount the consumer is requesting.
Provide the annual income. If income is captured in separate fields (e.g., individual income and additional income), ensure additional_household_income field is included.
Sent if additional income is captured separately in the consumer application process.
Acceptable values: "Rent", "Own", "Other".
Rent- RentOwn- OwnOther- Other
Provide date and time the consumer was presented with disclosures if you can collect. Use ISO 8601 format (ex. YYYY-MM-DDThh:mm:ssZ).
Provide date and time when the consumer submitted the application. Use ISO 8601 format (ex. YYYY-MM-DDThh:mm:ssZ).
- Mock serverhttps://momnt-api-docs.redocly.app/_mock/docs/openapi/sponsor_consumer_v1/api/v1/sponsor/consumers/soft-pull/
curl -i -X POST \
-u '<username>:<password>' \
https://momnt-api-docs.redocly.app/_mock/docs/openapi/sponsor_consumer_v1/api/v1/sponsor/consumers/soft-pull/ \
-H 'Content-Type: application/json' \
-d '{
"request_user_id": "string",
"external_application_id": "string",
"external_org_id": "string",
"consumer_email": "user@example.com",
"consumer_phone": "string",
"consumer_first_name": "string",
"consumer_middle_name": "string",
"consumer_last_name": "string",
"consumer_address_1": "string",
"consumer_address_2": "string",
"consumer_city": "string",
"consumer_state": "st",
"consumer_zip_code": "string",
"consumer_ssn": "stringstr",
"consumer_dob": "2019-08-24",
"consumer_requested_amount": "string",
"annual_income": "string",
"additional_household_income": "string",
"housing_status": "Rent",
"monthly_housing_payment": "string",
"mobile_home": true,
"years_at_current_residence": 0,
"installation_same_as_home": true,
"offer_code": "string",
"presented_on": "2019-08-24T14:15:22Z",
"consented_on": "2019-08-24T14:15:22Z",
"sponsor_callback_url": "http://example.com"
}'Requested Amount sent in request.
{ "consumer_invitation_uuid": "bf39a003-16d1-4c95-a53b-e7e6cfe93f0b", "consumer_application_id": "string", "soft_pull_credit_limit": "string", "consumer_requested_amount": "string", "decision": "string", "decision_detail": "", "offers": [ { … } ] }