Create group
POST/v1/groups
Creates a new group scoped to the authenticated organization.
Create group
curl https://api.vitablehealth.com/v1/groups \
-H 'Content-Type: application/json' \
-H "Authorization: Bearer $VITABLE_CONNECT_API_KEY" \
-d '{
"external_reference_id": "mol_seg_001",
"name": "Tier 1"
}'{
"data": {
"id": "grp_abc123def456",
"organization_id": "org_abc123def456",
"name": "Tier 1",
"external_reference_id": "mol_seg_001",
"created_at": "2026-01-15T10:30:00Z",
"updated_at": "2026-01-15T10:30:00Z"
}
}Returns Examples
{
"data": {
"id": "grp_abc123def456",
"organization_id": "org_abc123def456",
"name": "Tier 1",
"external_reference_id": "mol_seg_001",
"created_at": "2026-01-15T10:30:00Z",
"updated_at": "2026-01-15T10:30:00Z"
}
}