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

string
required
UUID of the tag to retrieve.
string
Comma-separated list of fields to include (e.g., owners,children).
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.
string
required
Fully qualified name of the tag (e.g., Certification.Bronze).
string
Comma-separated list of fields to include: owners, children.
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

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

Error Handling