Skip to content
Tag Posts

Untagging

Understanding how to use FeatureOS API to build custom integrations.

Introduction

This API lets you remove a specific tag from the post.

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