Skip to content
Tag Posts

Tagging

Understanding how to use FeatureOS API to build custom integrations.

Introduction

This API lets you add a specific tag to the post.

POST https://api.featureos.app/api/v3/feature_requests/tags
curl -X POST 'https://api.featureos.app/api/v3/feature_requests/tags' \
  -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.

Body Parameters

Parameter Default Description
tag_id - The ID of the tag.
feature_request_id - The ID of the post.

Sample response

{
  status: 200,
  success: true
}