2.5.4 Extend Coverage
Updated at: 6/5/2023 5:44:28 AM
Url
/api/v2/{fleet_token}/contractors/{contractor_id}/units/{unit_id}/coverages/extend/{id}
Method
Post
Body
```json
{
"EffectiveDate": "<date:Date>"
}
```
Parameters
- `EffectiveDate` Required, destination of coverage inactivation date. Blank value can be submitted which would mean reinstatement of the request coverage.
Response
```json
{
"Success": "<true|false>",
"Message": "<message>",
"Data":
{
"ID": "",
"Description": "",
"ProductToken": "",
"InceptionDate": "",
"InactivationDate": ""
}
}
```
Returns
- `Data` the target coverage object.
Notes
- The request would fail if the given effective date comes before the original termination date.
- The specified terminated coverage would be opened if you submit an empty string as `EffectiveDate`.
In this article