Get a list of all tags in the workspace
Retrieve a list of all tags in the workspace.
List of tags
Show Tag properties
Unique identifier for the tag
Name of the tag
Color of the tag in hex format
ISO8601 timestamp when the tag was created
curl -X GET 'https://api.caret.so/v1/workspace/tags' \ -H 'Authorization: Bearer {api_key}'
{ "tags": [ { "id": "01887270-89ab-7da0-c95d-9a9e9ebc9h23", "name": "Sales", "color": "#FF5733", "createdAt": "2023-02-15T10:30:00Z" }, { "id": "01887270-cd01-7da0-c95d-9a9e9ebc0i45", "name": "Engineering", "color": "#3366FF", "createdAt": "2023-02-16T14:45:00Z" }, { "id": "01887270-ef23-7da0-c95d-9a9e9ebc1j67", "name": "Product", "color": "#33CC66", "createdAt": "2023-02-17T09:15:00Z" } ] }