3.7.6 Reissue Coverage
Updated at: 2/20/2023 3:49:42 AM
Url
/api/v2/{fleet_token}/contractors/{contractor_id}/drivers/{driver_id}/coverages/reissue/{id}
Method
Post
Body
```json
{
"EffectiveDate": "<date:Date>",
"DestinationProductToken": "<destination_product_token>",
"Coverage": {
"ID": "<int>",
"CustomFields": {
"CustomFields1": "",
"CustomFields2": ""
}
}
}
```
Parameters
- `EffectiveDate` reissue date, required.
- `ExpirationDate` terminate date for the result coverage, optional.
- `Coverage` the target coverage, element required.
- `CustomFields` optional element.
- `DestinationProductToken` optional, usually omitted, only needed if the destination product is different from the original one.
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 result of the reissue will be returned in the response.
Notes
- The given `EffectiveDate` must be later than the original coverage inception date.
- The given `EffectiveDate` must be earlier than the original coverage inactivation date.
In this article