cURL
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>" } }
Get a list of tags associated with a workspace
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
See Pagination for details about how to use a cursor to iterate through the list.
See Sort for details on the sort parameter.
created_at:asc
created_at:desc
See Filters for details on parameter formatting.
200
The response is of type object.
object
Was this page helpful?