Newer Version Available
Cancel Claim Coverage Payment Detail Action
Cancel payment for a claim coverage payment detail record.
When the coveragePaymentType is Loss, this action reverses the insurance policy limit tracking data to roll back consumption. This action is available in API version 65.0 and later.
Supported REST HTTP Methods
- URI
- /services/data/v66.0/actions/standard/cancelClaimCvrPaymentDetail
- Formats
- JSON
- HTTP Methods
- POST
- Authentication
- Authorization: Bearer token
Inputs
| Input | Details |
|---|---|
| cancelClaimCvrPymtDtlInputRep |
|
Outputs
| Output | Details |
|---|---|
| paymentDetailId |
|
Example
Sample Request
1{
2 "inputs": [
3 {
4 "cancelClaimCvrPymtDtlInputRep": {
5 "claimId": "0clS70000004p9XIAQ",
6 "coverageId": "0kPxx000000002fEAA",
7 "paymentDetailId": "0l2xx000000003gEAA"
8 }
9 }
10 ]
11}Sample Response
1{
2 "actionName": "cancelClaimCvrPaymentDetail",
3 "errors": null,
4 "invocationId": null,
5 "isSuccess": true,
6 "outcome": null,
7 "outputValues": {
8 "paymentDetailId": "5pdS70000004oVfIAI"
9 },
10 "sortOrder": -1,
11 "version": 1
12}