Skip to main content
GET
GET /v1/glossaries/{id}

Retrieve a Glossary

Get a single glossary by its unique ID or fully qualified name.

Get by ID

string
required
UUID of the glossary to retrieve.
string
Comma-separated list of fields to include (e.g., owners,tags,domains,reviewers).
string
default:"non-deleted"
Include all, deleted, or non-deleted entities.

Get by Fully Qualified Name

Use GET /v1/glossaries/name/{fqn} to retrieve by fully qualified name.
string
required
Fully qualified name of the glossary (e.g., BusinessGlossary).
string
Comma-separated list of fields to include: owners, tags, domains, reviewers.
string
default:"non-deleted"
Include all, deleted, or non-deleted entities.
GET /v1/glossaries/{id}

Returns

Returns a glossary object with all requested fields populated.

Response

string
Unique identifier for the glossary (UUID format).
string
Glossary name.
string
Fully qualified name of the glossary.
string
Human-readable display name.
string
Description of the glossary in Markdown format.
boolean
Whether terms in this glossary are mutually exclusive.
array
List of owners. Only included when fields contains owners.
array
Classification tags. Only included when fields contains tags.
array
Domain assignments. Only included when fields contains domains.
array
Reviewers. Only included when fields contains reviewers.
number
Version number for the entity.

Error Handling