added

Additional Driver Data

We have now exposed dob, email, license_number, and license_state to our get_policy endpoint!

What's Changed

When a GET is called to the bind_api/v3/policies/policy/{policy_id} endpoint, each driver object will contain additional fields.

Note:

  • dob is obfuscated to only show the birth year
  • license_number is obfuscated to only show the last 3 characters

A truncated example output is below:

{
  "policy": {
    ...,
    "drivers": [
      {
        "dob": "2003-**-**",
        "email": "[email protected]",
        "licenseNumber": "*****011",
        "licenseState": "OH",
        ...
      }
    ],
    ...
  },
  ...
}

How to use it

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