Note: This release is in preview. Features described here don’t become generally available until the latest general availability date that Salesforce announces for this release. Before then, and where features are noted as beta, pilot, or developer preview, we can’t guarantee general availability within any particular time frame or at all. Make your purchase decisions only on the basis of generally available products and features.

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/v68.0/actions/standard/openClaimCoverage
Formats
JSON
HTTP Methods
POST
Authentication
Authorization: Bearer token

Inputs

Input Details
openClaimCoverageInputRep
Type
Apex-defined
Description

Required.

An Apex ConnectApi.OpenClaimCoverageInputRep record that contains the details of the claim coverage to be opened.

Outputs

Output Details
coverageId
Type
string
Description
ID of the claim coverage that's opened.

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]