Skip to content
Tags

Update a tag

Understanding how to use FeatureOS API to build custom integrations.

Introduction

This API enables you to modify a tag's name, color, privacy and description.

GET https://api.featureos.app/api/v3/tags/:id
curl -X GET 'https://api.featureos.app/api/v3/tags/:id' \
  -H 'API-KEY: YOUR_API_KEY' \
  -H 'Content-Type: application/json'

Headers

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