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 Member Plans (POST, PATCH)
Create and update insurance plans for a group census member.
- Resource
-
1/connect/insurance/census-management/group-census-members/memberId/plans - Resource example
-
1https://yourInstance.salesforce.com/services/data/v68.0/connect/insurance/census-management/group-census-members/0r6RM0000000h1pYAA/plans - Available version
- 65.0
- HTTP methods
- POST, PATCH
- Path parameter for POST and PATCH
-
Parameter Name Type Description Required or Optional Available Version memberId String ID of the group census member for whom insurance plans must be created or updated. Required 65.0 - Request body for POST
-
- JSON example
-
1{ 2 "groupCensusMemberPlans": { 3 "values": [ 4 { 5 "contractGroupPlanId": "0rgSG0000000e8jYAA" 6 }, 7 { 8 "contractGroupPlanId": "0rgSG0000000eALYAY" 9 } 10 ] 11 } 12} - Properties
-
Name Type Description Required or Optional Available Version groupCensusMemberPlans Group Census Member Plan Input[] List of plans to add to the member. Required 65.0
- Response body for POST
- Insurance Add Member Plans
- Request body for PATCH
-
- JSON example
-
1{ 2 "addedPlans": { 3 "values": [ 4 { 5 "contractGroupPlanId": "0rgSG0000000e8jYAA" 6 }, 7 { 8 "contractGroupPlanId": "0rgSG0000000eALYAY" 9 } 10 ] 11 }, 12 "deletedPlans": { 13 "values": [ 14 "0rgSG0000000eALYAY", 15 "0rgSG0000000e8jYAA" 16 ] 17 } 18} - Properties
-
Name Type Description Required or Optional Available Version addedPlans Group Census Member Plan Input[] List of plans to add to the member. Optional 65.0 deletedPlans String[] List of group census member plan IDs to delete. Optional 65.0
- Response body for PATCH
- Insurance Update Member Plans