Skip to main content
PATCH
/
v1
/
loans
/
{id}
/
close
Close Loan Application
curl --request PATCH \
  --url https://sandbox-api.itscovered.com/lenders/v1/loans/{id}/close \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "externalInsurance": {
    "carrier": "Example Insurance Co.",
    "coverageA": 250000,
    "premium": 1200
  }
}
'
{
  "success": true
}

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"

Body

externalInsurance
External Insurance Details · object

External insurance details, when customer specified that they had obtained insurance elsewhere (if applicable)

Response

Indicates that the loan application was closed successfully

success
boolean
required
Example:

true