Insurance Contract Endorse Input
Input representation of the details, such as quote ID, endorsement effective date,
optional enrollment window, and additional fields to create an endorsed contract version from a
quote.
- JSON example
-
1{ 2 "quoteId": "0Q0xx0000004CtoCAE", 3 "effectiveDate": "2026-02-01", 4 "enrollmentStartDate": "2026-03-01", 5 "enrollmentEndDate": "2026-12-31", 6 "updateExistingContractDates": false, 7 "additionalFields": { 8 "insuranceContractItemList": [ 9 { 10 "entity": "Contract", 11 "fields": { 12 "data": [ 13 { 14 "key": "Description", 15 "value": "Renewed for FY2026" 16 } 17 ] 18 } 19 }, 20 { 21 "entity": "InsuranceContract", 22 "fields": { 23 "data": [ 24 { 25 "key": "myCustomPickList__c", 26 "value": "Alive" 27 }, 28 { 29 "key": "EnrollmentEndDate", 30 "value": "2022-01-20" 31 }, 32 { 33 "key": "EnrollmentStartDate", 34 "value": "2021-01-20" 35 } 36 ] 37 } 38 }, 39 { 40 "entity": "ContractGroupPlan", 41 "productPath": "dentalBasic", 42 "fields": { 43 "data": [ 44 { 45 "key": "EnrollmentEndDate", 46 "value": "2025-12-31" 47 } 48 ] 49 } 50 } 51 ] 52 } 53} - Properties
-
Name Type Description Required or Optional Available Version additionalFields Insurance Contract Item Input[] List of additional fields to add to contract items. Optional 68.0 effectiveDate String Effective date of endorsement that indicates the start date of the endorsed contract. Specify the date in the yyyy-MM-dd format. Required 68.0 enrollmentEndDate String End date for plan enrollment in the endorsed contract. Specify the date in the yyyy-MM-dd format. Optional 68.0 enrollmentStartDate String Start date for plan enrollment in the endorsed contract. Specify the date in the yyyy-MM-dd format. Optional 68.0 quoteId String ID of the quote for contract endorsement. Required 68.0 updateExistingContractDates Boolean Indicates whether to update dates on the existing contract when creating the endorsed contract version (true) or not (false). Optional 68.0