added

Lienholder Data Now Available

We have now exposed lienholders for each vehicle to our get_policy endpoint!

What's Changed

When a GET is called to the bind_api/v3/policies/policy/{policy_id} endpoint, each vehicle object will contain one more additional field: lienholders

Note: an empty array would indicate no lienholders for this vehicle.

A truncated example output is below:

{
  "policy": {
    ...,
    "vehicles": [
      {
        "lienholders": [
          "address":{
            "address1": "123 Main Street",
            "address2": "suite 200",
            "city": "Columbus",
            "state": "OH",
            "zip": "43215"
          },
          "company_name": "Orange Lending Services LLC"
        ],
        ...
      }
    ],
    ...
  },
  ...
}

How to use it

No further configuration is required! All consumers of v3 get policy endpoint will receive this extra data.