Skip to main content

Documentation Index

Fetch the complete documentation index at: https://mintlify.com/YamiDarknezz/task-forge-api/llms.txt

Use this file to discover all available pages before exploring further.

GET /api/tags/{tag_id}

Returns the full details of a single tag. Any authenticated user can call this endpoint.

Authentication

Requires a valid Bearer access token.
Authorization: Bearer <access_token>

Path Parameters

tag_id
integer
required
The ID of the tag to retrieve.

Response

success
boolean
true when the request succeeds.
data
object

Errors

StatusDescription
401Missing or invalid access token.
404No tag exists with the given tag_id.

Example

curl -X GET "https://task-forge-gbd6h8gtg8hchve9.chilecentral-01.azurewebsites.net/api/tags/3" \
  -H "Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9..."
{
  "success": true,
  "data": {
    "id": 3,
    "name": "Backend",
    "color": "#3B82F6",
    "description": "Backend development tasks",
    "task_count": 12,
    "created_at": "2024-01-10T09:00:00",
    "updated_at": "2024-02-20T11:30:00"
  }
}