GET
/
v1
/
tags
List tags
curl --request GET \
  --url https://dovetail.com/api/v1/tags \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "id": "<string>",
      "title": "<string>",
      "project_id": "<string>",
      "created_at": "<string>"
    }
  ],
  "page": {
    "total_count": 123,
    "has_more": true,
    "next_cursor": "<string>"
  }
}

Authorizations

Authorization
string
header
required

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

Query Parameters

page
object

See Pagination for details about how to use a cursor to iterate through the list.

sort
default:created_at:desc

See Sort for details on the sort parameter.

Available options:
created_at:asc,
created_at:desc
filter
object

See Filters for details on parameter formatting.

Response

200
application/json

200

The response is of type object.