Generate Insurance Contract Transaction Action
Asynchronously generate insurance contract transactions (InsuranceContractTrxn and
InsuranceContractTrxnDtl records) for the specified contract ID over a given date
range.
This action is available in API version 68.0 and later.
Supported REST HTTP Methods
- URI
- /services/data/v68.0/actions/standard/generateInsuranceContractTrxn
- Formats
- JSON, XML
- HTTP Methods
- POST
- Authentication
- Authorization: Bearertoken
Inputs
| Input | Details |
|---|---|
| contractId |
|
| insuranceContractGenerateTxnInputRep |
|
Outputs
| Output | Details |
|---|---|
| insuranceContractGenerateTxnRep |
|
Example
- POST
-
This sample request is for the Generate Insurance Contract Transaction action.
1{ 2 "inputs": [ 3 { 4 "contractId": "800xx0000004C92AAE", 5 "insuranceContractGenerateTxnInputRep": { 6 "name": "Q1-2026-Transactions", 7 "fromDate": "2026-01-01", 8 "toDate": "2026-03-31" 9 } 10 } 11 ] 12} -
This sample response is for the Generate Insurance Contract Transaction action.
1[ 2 { 3 "actionName": "generateInsuranceContractTrxn", 4 "errors": null, 5 "invocationId": null, 6 "isSuccess": true, 7 "outcome": null, 8 "outputValues": { 9 "isSuccess": true, 10 "message": "Transaction generation started successfully", 11 "jobIdentifier": "08Pxx0000000001EAA", 12 "errors": null 13 }, 14 "sortOrder": -1, 15 "version": 1 16 } 17]