Open Claim Coverage Action
Open a claim coverage.
This action is available in API version 65.0 and later.
Supported REST HTTP Methods
- URI
- /services/data/v67.0/actions/standard/openClaimCoverage
- Formats
- JSON
- HTTP Methods
- POST
- Authentication
- Authorization: Bearer token
Inputs
| Input | Details |
|---|---|
| openClaimCoverageInputRep |
|
Outputs
| Output | Details |
|---|---|
| coverageId |
|
Example
Sample Request
1{
2 "inputs": [
3 {
4 "openClaimCoverageInputRep": {
5 "claimParticipantId": "0kaxx000000001dEAA",
6 "claimItemId": "0koxx000000001dEAA",
7 "insurancePolicyAssetId": "02ixx0000004l5sAAA",
8 "insurancePolicyCoverageId": "0cvxx000000AbCdEfG",
9 "reserveProcessingMode": "Manual",
10 "currencyIsoCode": "USD",
11 "lossReserveAmount": 5000,
12 "expenseReserveAmount": 750.5,
13 "additionalFields": {
14 "RequireInspection": true,
15 "CoverageSubtype": "Collision-Standard"
16 }
17 }
18 }
19 ]
20}Sample Response
1[
2 {
3 "actionName": "openClaimCoverage",
4 "errors": null,
5 "invocationId": null,
6 "isSuccess": true,
7 "outcome": null,
8 "outputValues": {
9 "coverageId": "1ccS70000004oVfIAI"
10 },
11 "sortOrder": -1,
12 "version": 1
13 }
14]