2.5.6 Reissue Coverage
Updated at: 2/20/2023 3:47:54 AM
Url
/api/v2/{fleet_token}/contractors/{contractor_id}/units/{unit_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": ""
}
}
}
```
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