GET
/
workspaces
/
tags
curl --request GET \
  --url https://api.mudstack.com/workspaces/tags \
  --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

Response

200 - application/json
A list of workspace tags.
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.