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.
Insurance Contract from Quote (POST)
Create a group benefits contract from a quote. This API supports asynchronous operation
for long-running conversions.
- Resource
-
1/connect/insurance/contracts - Resource example
-
1https://yourInstance.salesforce.com/services/data/v68.0/connect/insurance/contracts - Available version
- 65.0
- HTTP methods
- POST
- Request body for POST
-
- JSON example
-
1{ 2 "quoteId": "0Q0SG000000DQA00AO", 3 "contractStartDate": "2025-03-11", 4 "contractEndDate": "2026-03-11", 5 "enrollmentStartDate": "2025-01-01", 6 "enrollmentEndDate": "2025-02-01", 7 "contractTerm": 1, 8 "additionalFields": [ 9 { 10 "entity": "Contract", 11 "fields": { 12 "data": [ 13 { 14 "key": "CustomerSignedTitle", 15 "value": "Mr" 16 } 17 ] 18 } 19 }, 20 { 21 "entity": "ContractGroupPlan", 22 "instanceKey": "d5861be1-9920-42d9-8f43-093b0a709d35", 23 "fields": { 24 "data": [ 25 { 26 "key": "EligibilityCriteria", 27 "value": "testcriteria" 28 } 29 ] 30 } 31 } 32 ] 33} - Properties
-
Name Type Description Required or Optional Available Version additionalFields Contract Item[] List of additional fields to add to contract items. Optional 65.0 contractEndDate String End date of the contract. Required 65.0 contractStartDate String Start date of the contract. Required 65.0 contractTerm Integer Contract terms in months. Optional 65.0 enrollmentEndDate String End date for plan enrollment. Optional 65.0 enrollmentStartDate String Start date for plan enrollment. Optional 65.0 quoteId String ID of the quote to create the contract from. Required 65.0
- Response body for POST
- Contract Creation Response