curl --request PUT \
--url https://app.coverwhale.com/api/v1/submission/{displayId}/{transactionId}/driver/{driverId} \
--header 'AccessToken: <api-key>' \
--header 'Content-Type: application/json' \
--data '
{
"name_first": "<string>",
"name_last": "<string>",
"driver_license_state": "<string>",
"driver_license_number": "<string>",
"driver_date_of_birth": "2023-12-25",
"covered": "Y",
"years_cdl_experience": 123,
"months_cdl_experience": 123,
"accidents_total": 123,
"suspensions_total": 123,
"violations_total": 123,
"major_violations_total": 123
}
'