Skip to main content
GET
/
api
/
v2
/
projects
/
{project_id}
/
tags
List Project Tags
curl --request GET \
  --url https://api.example.com/api/v2/projects/{project_id}/tags \
  --header 'Authorization: Bearer <token>'
{
  "tags": [
    {
      "id": "<string>",
      "name": "<string>",
      "color": "<string>",
      "association_count": 0
    }
  ]
}

Authorizations

Authorization
string
header
required

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

Path Parameters

project_id
string
required

Query Parameters

entity_type
string | null

Response

200 - application/json

TagsListResponse(tags: list[server.api_routes.tags_api_v2.TagResponse])

tags
TagResponse · object[]
required