Get eligibility policy details
/v1/benefit-eligibility-policy/{policy_id}
Retrieves detailed information for a specific benefit eligibility policy by ID. Returns the complete policy configuration including all eligibility rules, effective dates, associated employer information, and any waiting period requirements.
Path Parameters
policy_id: string
Returns
Get eligibility policy details
curl https://api.vitablehealth.com/v1/benefit-eligibility-policy/$POLICY_ID \
-H "Authorization: Bearer $VITABLE_connect_API_API_KEY"
{
"id": "id",
"active": true,
"created_at": "2019-12-27T18:11:19.117Z",
"effective_date": "2019-12-27",
"employer_id": "employer_id",
"name": "name",
"rules": [
{
"operator": "operator",
"rule_type": "rule_type",
"value": {}
}
],
"updated_at": "2019-12-27T18:11:19.117Z",
"description": "description",
"replaced_policy_id": "replaced_policy_id"
}
Returns Examples
{
"id": "id",
"active": true,
"created_at": "2019-12-27T18:11:19.117Z",
"effective_date": "2019-12-27",
"employer_id": "employer_id",
"name": "name",
"rules": [
{
"operator": "operator",
"rule_type": "rule_type",
"value": {}
}
],
"updated_at": "2019-12-27T18:11:19.117Z",
"description": "description",
"replaced_policy_id": "replaced_policy_id"
}