Newer Version Available
Pay Claim Coverage Payment Detail Action
Initiate the payment for a claim coverage payment detail record, track the policy limit
consumption for the payout, and update the status of the claim coverage payment detail record to
Paid.
This action is available in API version 65.0 and later.
Supported REST HTTP Methods
- URI
- /services/data/v65.0/actions/standard/payClaimCvrPaymentDetail
- Formats
- JSON
- HTTP Methods
- POST
- Authentication
- Authorization: Bearer token
Inputs
| Input | Details |
|---|---|
| payClaimCvrPymtDtlInputRep |
|
Outputs
| Output | Details |
|---|---|
| payClaimCvrPymtDtlOutputRep |
|
Example
Sample Request
1{
2 "inputs": [
3 {
4 "payClaimCvrPymtDtlInputRep": {
5 "claimId": "0Zkxx000000001dEAA",
6 "coverageId": "0kPxx000000002fEAA",
7 "paymentDetailId": "5pdS70000004oVfIAI"
8 }
9 }
10 ]
11}Sample Response
1[
2 {
3 "actionName": "payClaimCvrPaymentDetail",
4 "errors": null,
5 "invocationId": null,
6 "isSuccess": true,
7 "outcome": null,
8 "outputValues": {
9 "payClaimCvrPymtDtlOutputRep": {
10 "isSuccess": true
11 }
12 },
13 "sortOrder": -1,
14 "version": 1
15 }
16]