GET /v1/domains/{id}
Retrieve a Domain
Get a domain by ID or fully qualified name
GET
GET /v1/domains/{id}
Documentation Index
Fetch the complete documentation index at: https://openmetadata-codex-audit-docs-codebase-alignment.mintlify.app/llms.txt
Use this file to discover all available pages before exploring further.
Retrieve a Domain
Get a single domain by its unique ID or fully qualified name.Get by ID
UUID of the domain to retrieve.
Comma-separated list of fields to include (e.g.,
owners,children,experts).Include
all, deleted, or non-deleted entities.Get by Fully Qualified Name
UseGET /v1/domains/name/{fqn} to retrieve by fully qualified name.
Fully qualified name of the domain (e.g.,
TestDomain or Engineering.DataPlatform).Comma-separated list of fields to include:
owners, children, experts.Include
all, deleted, or non-deleted entities.GET /v1/domains/{id}
Returns
Returns a domain object with all requested fields populated.Response
Unique identifier for the domain (UUID format).
Domain name.
Fully qualified name of the domain.
Human-readable display name.
Description of the domain in Markdown format.
Type of domain:
Source-aligned, Consumer-aligned, or Aggregate.List of owners. Only included when
fields contains owners.Child domain references. Only included when
fields contains children.Subject matter experts. Only included when
fields contains experts.Version number for the entity.
Error Handling
| Code | Error Type | Description |
|---|---|---|
401 | UNAUTHORIZED | Invalid or missing authentication token |
403 | FORBIDDEN | User lacks permission to view this domain |
404 | NOT_FOUND | Domain with given ID or FQN does not exist |