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

Retrieve a Tag

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

Get by ID

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

Get by Fully Qualified Name

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

Returns

Returns a tag object with all requested fields populated.

Response

id
string
Unique identifier for the tag (UUID format).
name
string
Tag name.
fullyQualifiedName
string
Fully qualified name of the tag.
displayName
string
Human-readable display name.
description
string
Description of the tag in Markdown format.
style
object
Visual styling for the tag.
classification
object
Reference to the parent classification.
provider
string
Provider: user or system.
owners
array
List of owners. Only included when fields contains owners.
children
array
Child tag references. Only included when fields contains children.
version
number
Version number for the entity.

Error Handling