GET
/
workspaces
/
assets
/
{asset_id}
/
tags
/
{tag_id}
curl --request GET \
  --url https://api.mudstack.com/workspaces/assets/{asset_id}/tags/{tag_id} \
  --header 'Authorization: Bearer <token>' \
  --header 'x-account-id: <x-account-id>' \
  --header 'x-workspace-id: <x-workspace-id>'
{
  "id": "<string>",
  "workspace_id": "<string>",
  "name": "<string>",
  "color": "<string>",
  "created_by_user_id": "<string>",
  "sequence": 123
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Headers

x-account-id
string
required
x-workspace-id
string
required

Path Parameters

asset_id
string
required

The ID of the asset

tag_id
string
required

The ID of the tag

Response

200 - application/json
The tag details
id
string

Unique identifier for the workspace tag.

workspace_id
string

Identifier of the workspace to which the tag belongs.

name
string

Name of the workspace tag.

color
string

Color associated with the workspace tag.

created_by_user_id
string

Identifier of the user who created the tag.

sequence
integer

Sequence number for ordering tags.