1.5.1.2 Apply Individual Coverage
Updated at: 3/13/2023 7:08:26 AM
Url
/api/v2/{fleet_token}/contractors/{contractor_id}/coverages/apply_as_individual
Method
Post
Body
```json
{
"ProductToken": "<product_token>",
"InceptionDate": "<inception_date>",
"InactivationDate": "<date:Date>",
"UnitID": "<unit_id>",
"CopyAsDriver": "<true|false>",
"CustomFields":
{
"CustomFields1": "",
"CustomFields2": ""
}
}
```
Parameters
- `ProductToken` Required.
- `InceptionDate` Required.
- `InactivationDate` Optional.
- `CustomFields` Optional.
- `UnitID` Optional.
- `CopyAsDriver` Optional, default to false.
Response
```json
{
"Success": "<true|false>",
"Message": "<message>",
"Data": {
"ID": "",
"Description": "",
"ProductToken": "",
"InceptionDate": "",
"InactivationDate": "",
"Unit": {
"ID": "<unit_id>",
"Number": "<unit_number>",
"Year": "",
"Make": "",
"Vin": "",
"StatedValue": "",
"EquipmentType": "",
"Model": ""
},
"Driver": {
"ID": "<driver_id>",
"Number": "<driver_number>",
"FirstName": "<first_name>",
"MiddleName": "<middle_name>",
"LastName": "<last_name>",
"Dob": "<dob:Date>",
"Email": "<email>",
"PhoneNumber": "<phone_number>",
"CellNumber": "<cell_number>",
"Address": "<address>",
"Address2": "<address2>",
"City": "<city>",
"State": "<state>",
"Zip": "<zip>",
"License": "<license>",
"LicenseState": "<license_state>"
}
}
}
```
Returns
- The added coverage along with the contractor is returned in the response.
Notes
- The request fails if the motor carrier cannot be found by `fleet_token`.
In this article