GET
/
{team_id}
/
tags
Retrieve tags for a workspace or project (optionally).
curl --request GET \
  --url https://api.superthread.com/v1/{team_id}/tags
{
  "cursor": "dmsjqh9d8w1hdjosjaasda",
  "count": 14,
  "tags": [
    {
      "id": "u-dsu0j19",
      "team_id": "u-dsu0j19",
      "project_id": "5",
      "name": "todo",
      "slug": "todo",
      "color": "blue",
      "total_cards": 17
    }
  ]
}

Path Parameters

team_id
string
required

Team ID is an alphanumerical string that identifies a Team. This is externally referred to as a "Workspace".

Query Parameters

project_id
string

Project ID is a numerical string that identifies a Project. This is externally referred to as a "Space".

all
boolean

Return all tags

Response

200
application/json

Workspace and project tags

The response is of type object.