Added
Additional Driver Data
11 months ago by Root Insurance
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:
dobis obfuscated to only show the birth yearlicense_numberis 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.