List member dependents
GET/v1/members/{member_id}/dependents
Lists a member’s active legal dependents — name, relationship, date of birth, age, and sex at birth. Access is scoped to the authenticated principal; a member not visible to the caller returns a 404.
List member dependents
curl https://api.vitablehealth.com/v1/members/$MEMBER_ID/dependents \
-H "Authorization: Bearer $VITABLE_CONNECT_API_KEY"{
"data": [
{
"name": "Sam Doe",
"relationship": "Child",
"date_of_birth": "2015-06-01",
"age": 11,
"sex_at_birth": "Male"
}
]
}Returns Examples
{
"data": [
{
"name": "Sam Doe",
"relationship": "Child",
"date_of_birth": "2015-06-01",
"age": 11,
"sex_at_birth": "Male"
}
]
}