1.5.6 Reissue Coverage
Updated at: 2/20/2023 3:27:29 AM
Url
/api/v2/{fleet_token}/contractors/{contractor_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.
- `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": "",
"Contractor":
{
"ID": "<contractor_id>",
"Number": "<contractor_number>",
"Name": "",
"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