Newer Version Available

This content describes an older version of this product. View Latest

Update Claim Coverage Action

Update a claim coverage.

This action is available in API version 65.0 and later.

Supported REST HTTP Methods

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

Inputs

Input Details
updateClaimCoverageInputRep
Type
Apex-defined
Description

Required.

An Apex ConnectApi.UpdateClaimCoverageInputRep record that contains the details of the claim coverage to be updated.

Outputs

Output Details
coverageId
Type
string
Description
ID of the claim coverage that's updated.

Example

Sample Request

1{
2  "inputs": [
3    {
4      "updateClaimCoverageInputRep": {
5        "claimId": "0Z1S70000004oVfIAI",
6        "coverageId": "1ccS70000004oVfIAI",
7        "expenseReserveAmount": 500,
8        "lossReserveAmount": 2000,
9        "additionalFields": {
10          "Status": "Approved"
11        }
12      }
13    }
14  ]
15}

Sample Response

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