Skip to main content
PUT
/
v1
/
loans
/
{id}
/
current-insurance
Add Current Insurance Policies
curl --request PUT \
  --url https://sandbox-api.itscovered.com/lenders/v1/loans/{id}/current-insurance \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "currentInsurancePolicies": [
    {
      "carrier": "<string>",
      "coverages": {},
      "deductible": 123,
      "expirationDate": "<string>",
      "policyNumber": "<string>",
      "policyType": "HO3",
      "premium": 123
    }
  ]
}
'
{
  "currentInsurancePolicies": [
    {
      "carrier": "<string>",
      "coverages": {
        "a": {
          "amount": 123,
          "included": true
        },
        "b": {
          "amount": 123,
          "included": true
        },
        "c": {
          "amount": 123,
          "included": true
        },
        "computers": {
          "amount": 123,
          "included": true
        },
        "d": {
          "amount": 123,
          "included": true
        },
        "e": {
          "amount": 123,
          "included": true
        },
        "f": {
          "amount": 123,
          "included": true
        },
        "hvac": {
          "amount": 123,
          "included": true
        },
        "mineSubsidence": {
          "amount": 123,
          "included": true
        },
        "waterBackup": {
          "amount": 123,
          "included": true
        }
      },
      "deductible": 123,
      "expirationDate": "<string>",
      "policyNumber": "<string>",
      "policyType": "HO3",
      "premium": 123
    }
  ],
  "id": "<string>"
}

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

currentInsurancePolicies
object[]
required

Response

The response to adding current insurance policies to a loan application

currentInsurancePolicies
object[]
required
id
string
required