(POST) Bridge Loan

Post /BridgeLoan

This endpoint confirms the user's selection of their pre-approved loan where it is taken to a pending state where the underwriting and disbursement of funds is communicated through webhooks. Once again, the loan closure process can be shown to the user through our embedded widget or in your native app.

Headers

Name
Value

API Key

Bearer <token>

API Secret

Bearer <token>

Body

Name
Type
Description

customerID

string

Unique identifier for the user

riskID

string

Unique identifier for the User's most recent risk score

LoanOfferID

string

Unique identifier for a pre-approved offer from our loan provider partner

Body:

{  
  "customerID": 3f020d62-6cef-4f2c-87ed-b096abc5cac9,
  "riskID": 3f020d62-6cef-4f2c-87ed-b096abc5cac9,
  "LoanOfferID": 3f020d62-6cef-4f2c-87ed-b096abc5cac9,
}

Response

{  
  "LoanConnectionID": 3f020d62-6cef-4f2c-87ed-b096abc5cac9,
  "createdAt": 2023-05-24T17:58:34.254Z
  "status": "Pending"
}
      {  
        "customerID": 3f020d62-6cef-4f2c-87ed-b096abc5cac9,
        "riskID": 3f020d62-6cef-4f2c-87ed-b096abc5cac9,
      }
        {  
        "LoanOfferID": 3f020d62-6cef-4f2c-87ed-b096abc5cac9,
        {
          "PartnerID": 3f020d62-b096abc5cac9
          "productTypes": [
              "Personal_loan"
        ],
}

Last updated