Newer Version Available

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

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/v64.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                "fieldSetIds" : {
15                   "policyFieldSetId":"0YTIU000000xUi14AE",
16                   "assetFieldSetId" : "0YTIU000000xUi14AE",
17                   "participantFieldSetId" : "0YTIU000000xUi14AE",
18                   "coverageFieldSetId" : "0YTIU000000xUi14AE",
19                }
20            }
21        }
22    ]
23}