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.

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

Inputs

Input Details
payClaimCvrPymtDtlInputRep
Type
Apex-defined
Description

Required.

An Apex ConnectApi.PayClaimCvrPymtDtlInputReprecord that contains the details of the claim coverage payment detail to be paid.

Outputs

Output Details
payClaimCvrPymtDtlOutputRep
Type
Apex-defined
Description
An Apex ConnectApi.PayClaimCvrPymtDtlOutputRep record that contains the details of the payment status.

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]