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.

Renew Insurance Policies Action

Process the renewal of insurance policies in bulk.

This action is available in API version 64.0 and later.

Supported REST HTTP Methods

URI
/services/data/v68.0/actions/standard/renewInsurancePolicies
Formats
JSON, XML
HTTP Methods
POST
Authentication
Authorization: Bearertoken

Inputs

Input Details
renewInsurance​Policies​IAInputRep
Type

Apex-defined

Description
Required. A collection of Apex input records that contain details of the insurance policies to be renewed. See ConnectApi.RenewInsurancePoliciesIAInputRep for the list of input parameters.

Outputs

No output representation as it's an async invocable action, which publishes the request to a queue for processing.

Example

POST

This example shows a sample request for the Renew Insurance Policies action.

1{
2    "inputs": [
3        {
4            "RenewInsurancePoliciesIAInputRep": {
5                "policyId": "0YTIU000000xUi14AE",
6                "jobIdentifier": "testJob368",
7                "executeConfigurationRules": true,
8                "executeQualificationRules": true,
9                "issueQuote": false,
10                "sameTenure": true
11                "priceBookId": "01sxx0000005pyfAAA",
12                "productSellingModel": "One Time",
13                "flowAPINameWithNamespace":"abc",
14                "executePricing": false,
15                "fieldSetIds" : {
16                   "policyFieldSetId":"0YTIU000000xUi14AE",
17                   "assetFieldSetId" : "0YTIU000000xUi14AE",
18                   "participantFieldSetId" : "0YTIU000000xUi14AE",
19                   "coverageFieldSetId" : "0YTIU000000xUi14AE",
20                }
21            }
22        }
23    ]
24}