Skip to main content
GET
/
task-tags
/
{id}
Get a task tag
curl --request GET \
  --url https://www.ruddr.io/api/workspace/task-tags/{id} \
  --header 'Authorization: Bearer <token>'
{
  "id": "b3e1f4a2-89cd-4f17-b62a-5d3c0e7f91a8",
  "name": "Launch",
  "isActive": true,
  "createdAt": "2025-03-10T14:22:45.183Z"
}
A custom attribute that can be assigned to tasks and used to filter reports.

Authorizations

Authorization
string
header
required

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

Path Parameters

id
string
required

The task tag uuid.

Response

200

id
string

The unique identifier for the object.

name
string

The name of the task tag.

isActive
boolean

Whether the task tag is active.

createdAt
string<date-time>

The timestamp when the object was created.