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 Plans Eligibility Check (POST, PATCH)

Evaluate product configuration rules for a group census member based on their selected plan and coverage options during initial enrollment (POST). Reevaluate plan eligibility for a group census member when plans are added or removed (PATCH).
Resource
1/connect/insurance/census-management/group-census-members/memberId/enrollment-rules/actions/invoke
Resource example
1https://yourInstance.salesforce.com/services/data/v68.0/connect/insurance/census-management/group-census-members/0r6RM0000000h1pYAA/enrollment-rules/actions/invoke
Available version
66.0
HTTP methods
POST, PATCH
Path Parameter for POST and PATCH
Name Type Description Required or Optional Available Version
memberId String ID of the group census member. Required 66.0
Request body for POST
JSON example
1{
2  "plans": [
3    {
4      "planId": "0gpp00000004C9wAAE",
5      "coverages": []
6    }
7  ]
8}
Properties
Name Type Description Required or Optional Available Version
plans Insurance Group Plan Input[] List of contract group plans for initial eligibility validation. Required 66.0
Response body for POST
Insurance Plans Eligibility Details
Request body for PATCH
JSON example
1{
2  "contextId": "42ce00ea6a44dcc0d308ba1ea7c4c9bb455bd14bb0405ff03dca1b5371c42cda",
3  "addedPlans": [
4    {
5      "planId": "0gpp00000004C9wAAE",
6      "coverages": [
7        {
8          "planId": "0rgxx0000000001AAA"
9        }
10      ]
11    }
12  ],
13  "deletedPlans": []
14}
Properties
Name Type Description Required or Optional Available Version
addedPlans Insurance Group Plan Input[] List of contract group plans to add to the member's enrollment for eligibility checking. Optional 66.0
contextId String ID of the context. Required 66.0
deletedPlans Insurance Group Plan Input[] List of contract group plans to remove from the member's enrollment. Optional 66.0
Response body for PATCH
Insurance Plans Eligibility Details