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

Retrieve a Classification

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

Get by ID

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

Get by Fully Qualified Name

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

Returns

Returns a classification object with all requested fields populated.

Response

id
string
Unique identifier for the classification (UUID format).
name
string
Classification name.
fullyQualifiedName
string
Fully qualified name of the classification.
displayName
string
Human-readable display name.
description
string
Description of the classification in Markdown format.
mutuallyExclusive
boolean
Whether tags in this classification are mutually exclusive.
provider
string
Provider: user or system.
owners
array
List of owners. Only included when fields contains owners.
version
number
Version number for the entity.

Error Handling