Skip to main content
POST
/
v1
/
loans
/
{id}
/
quotes
/
{quoteId}
/
select
Select Quote
curl --request POST \
  --url https://sandbox-api.itscovered.com/lenders/v1/loans/{id}/quotes/{quoteId}/select \
  --header 'Authorization: Bearer <token>'
{
  "quoteId": "7c7a39cc-256f-4514-92b9-a75dc37a581d",
  "success": true
}
Call this endpoint when a borrower selects a quote to continue with. This records their selection and if they are directed to Covered’s quote display page, they will see the quote they selected.

Authorizations

Authorization
string
header
required

JWT Token

Path Parameters

id
string
required

The unique identifier of the loan application

Example:

"693f2f46-69ff-4f20-a4d9-abe982d34fd4"

quoteId
string
required

The unique identifier of the quote to select

Example:

"7c7a39cc-256f-4514-92b9-a75dc37a581d"

Response

Indicates that the quote was selected successfully

quoteId
string
required

The unique identifier of the selected quote

Example:

"7c7a39cc-256f-4514-92b9-a75dc37a581d"

success
boolean
required
Example:

true