A domain group lets you tie several entity records together. For example, when one brand is tracked under multiple domains (Documentation Index
Fetch the complete documentation index at: https://docs.geogen.io/llms.txt
Use this file to discover all available pages before exploring further.
acme.com, acme.io, getacme.com) and you want their analytics merged behind a single primary. Each group has one primary entity and two or more member entities.
geogen domain-groups list
List domain groups in the workspace. Maps to GET /v1/domain-groups.
| Flag | Description |
|---|---|
--entity <id> | Filter to groups scoped to this entity tracking |
geogen domain-groups get
Fetch a single domain group with its full member detail. The detailed payload is printed as JSON.
geogen domain-groups create
Create a new group from 2+ entities. Maps to POST /v1/domain-groups.
| Flag | Description |
|---|---|
--primary <ref> | Primary entity, given as entityTrackingId or entity UUID (required) |
--entities <refs> | Comma-separated entity refs, must include --primary (required, 2+) |
--name <name> | Group name. Defaults to the primary entity’s name. |
--entity <id> | Optional entity tracking to scope the group to |
You can pass either an
entityTrackingId (the id from geogen entities list) or a raw entity UUID. The API resolves both forms.geogen domain-groups update
Update a group’s name, primary, or member list. Maps to PATCH /v1/domain-groups.
| Flag | Description |
|---|---|
--group-id <id> | Domain group ID (required) |
--name <name> | New name |
--primary <ref> | New primary entity ref |
--entities <refs> | New comma-separated member list (replaces the existing set; 2+) |
--entities, the new list must contain the (possibly new) primary entity.
geogen domain-groups delete
Delete a domain group. Maps to DELETE /v1/domain-groups.

