Update dependent information
/v1/dependents/{dependent_id}
Updates an existing dependent's mutable information. Allows modification of relationship type and active status. Name, DOB, and sex cannot be modified after creation.
Path Parameters
dependent_id: string
Body Parameters
active: optional boolean
Whether the dependent is active
gender: optional string
Gender identity
Returns
Update dependent information
curl https://api.vitablehealth.com/v1/dependents/$DEPENDENT_ID \
-X PUT \
-H "Authorization: Bearer $VITABLE_connect_API_API_KEY"
{
"id": "id",
"active": true,
"created_at": "2019-12-27T18:11:19.117Z",
"date_of_birth": "2019-12-27",
"first_name": "first_name",
"last_name": "last_name",
"member_id": "member_id",
"relationship": "Spouse",
"sex": "Male",
"updated_at": "2019-12-27T18:11:19.117Z",
"gender": "gender",
"ssn_last_four": "ssn_last_four",
"suffix": "suffix"
}
Returns Examples
{
"id": "id",
"active": true,
"created_at": "2019-12-27T18:11:19.117Z",
"date_of_birth": "2019-12-27",
"first_name": "first_name",
"last_name": "last_name",
"member_id": "member_id",
"relationship": "Spouse",
"sex": "Male",
"updated_at": "2019-12-27T18:11:19.117Z",
"gender": "gender",
"ssn_last_four": "ssn_last_four",
"suffix": "suffix"
}