Introduction
This API enables you to modify a tag's name, color, privacy and description.
GET https://api.featureos.app/api/v3/tags/:idHeaders
| Parameter | Default | Description | |
|---|---|---|---|
| API-KEY | - | Generate from organization settings on the admin dashboard. | |
| Authorization | - | Generate a unique JWT token specific to a user. | |
Query Parameters
| Parameter | Default | Description | |
|---|---|---|---|
| id | - | The ID of the tag returned in the list tags endpoint. | |
Body Parameters
| Parameter | Default | Description | |
|---|---|---|---|
| name | - | The name of the tag to be updated. | |
| color | - | The color of the tag to be updated. | |
| description | - | A description of the tag to be updated. | |
| private | - | Indicates whether the tag is private or public. | |
Sample response
{ "id": 123, "slug": "2025-Quarter-1", "name": "2025 Quarter 1", "description": "ETC quarter", "color": "orange", "private": true, "source_type": "bucket", "source_id": 12 }