Newer Version Available
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/v65.0/actions/standard/verifyPolicyCoverage
- Formats
- JSON
- HTTP Methods
- POST
- Authentication
- Authorization: Bearer token
Inputs
| Input | Details |
|---|---|
| verifyPolicyCoverageInputRep |
|
Outputs
| Output | Details |
|---|---|
| verifyPolicyCoverageOutputRep |
|
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]