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.

Verify Policy Coverage Action

Verify whether a policy coverage is applicable for a specified loss date under an insurance policy, so that only eligible coverages are processed for claims.

This action is available in API version 65.0 and later.

Supported REST HTTP Methods

URI
/services/data/v68.0/actions/standard/verifyPolicyCoverage
Formats
JSON
HTTP Methods
POST
Authentication
Authorization: Bearer token

Inputs

Input Details
verifyPolicyCoverageInputRep
Type
Apex-defined
Description

Required.

An Apex ConnectApi.VerifyPolicyCoverageInputRep record that contains the details of a policy coverage whose applicability on a specified loss date under an insurance policy must be verified.

Outputs

Output Details
verifyPolicyCoverageOutputRep
Type
Apex-defined
Description
An Apex ConnectApi.VerifyPolicyCoverageOutputRep record that contains the details of a policy coverage whose applicability on a specified loss date under an insurance policy is verified.

Example

Sample Request

1{
2  "inputs": [
3    {
4      "verifyPolicyCoverageInputRep": {
5        "coverageId": "1pcS70000004oVfIAI",
6        "insuredAssetOrParticipantId": "0kaxx000000001dEAA",
7        "lossDate": "2025-08-15",
8        "policyId": "0YTx0000000001qEAA"
9      }
10    }
11  ]
12}

Sample Response

1[
2  {
3    "actionName": "verifyPolicyCoverage",
4    "errors": null,
5    "invocationId": null,
6    "isSuccess": true,
7    "outcome": null,
8    "outputValues": {
9      "verifyPolicyCoverageOutputRep": {
10        "errors": [],
11        "isSuccess": true
12      }
13    },
14    "sortOrder": -1,
15    "version": 1
16  }
17]