Update group
PATCH/v1/groups/{group_id}
Partially updates a group’s name or external reference ID. Returns 404 if the group does not belong to the authenticated organization.
Update group
curl https://api.vitablehealth.com/v1/groups/$GROUP_ID \
-X PATCH \
-H "Authorization: Bearer $VITABLE_CONNECT_API_KEY"{
"data": {
"id": "grp_abc123def456",
"organization_id": "org_abc123def456",
"name": "Tier 1 (renamed)",
"external_reference_id": "mol_seg_001_v2",
"created_at": "2026-01-15T10:30:00Z",
"updated_at": "2026-01-16T09:12:00Z"
}
}Returns Examples
{
"data": {
"id": "grp_abc123def456",
"organization_id": "org_abc123def456",
"name": "Tier 1 (renamed)",
"external_reference_id": "mol_seg_001_v2",
"created_at": "2026-01-15T10:30:00Z",
"updated_at": "2026-01-16T09:12:00Z"
}
}